-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig-mysql.yml
More file actions
24 lines (24 loc) · 820 Bytes
/
Copy pathconfig-mysql.yml
File metadata and controls
24 lines (24 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
initUrl: "jdbc:mysql://127.0.0.1:3306?serverTimezone=UTC&useServerPrepStmts=true&cachePrepStmts=true"
connUrl: "jdbc:mysql://127.0.0.1:3306/reproduceDB?serverTimezone=UTC&useServerPrepStmts=true&cachePrepStmts=true"
user: "root"
password: "root"
create: true
load: true
createDatabaseList:
- "drop database if exists reproduceDB;"
- "create database reproduceDB;"
createTableList:
- "create table table_7_2(a int primary key, b int, c double);"
loadList:
- "insert into table_7_2 values(676, 5012153, 2240641.4);"
operationList:
- trxId: "739"
sql: "update table_7_2 set b=-5012153, c=2240641.4 where a=676;"
- trxId: "723"
sql: "update table_7_2 set b=852150 where a=676;"
- trxId: "739"
sql: "commit;"
- trxId: "1000"
sql: "select * from table_7_2;"
- trxId: "1000"
sql: "commit;"