File tree 4 files changed +7
-6
lines changed
4 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -264,10 +264,10 @@ var mapOfDDLKindProbability = map[DDLKind]float64{
264
264
265
265
ActionAlterIndexVisibility : 0.20 ,
266
266
267
- ActionCreatePlacementPolicy : 0.10 ,
268
- ActionDropPlacementPolicy : 0.10 ,
269
- ActionAddPlacementPolicyToTable : 0.10 ,
270
- ActionAlterPlacementPolicy : 0.10 ,
267
+ ActionCreatePlacementPolicy : 0.20 ,
268
+ ActionDropPlacementPolicy : 0.20 ,
269
+ ActionAddPlacementPolicyToTable : 0.20 ,
270
+ ActionAlterPlacementPolicy : 0.20 ,
271
271
}
272
272
273
273
type ddlJob struct {
Original file line number Diff line number Diff line change @@ -176,6 +176,7 @@ func ddlIgnoreError(err error) bool {
176
176
strings .Contains (errStr , "Truncated incorrect" ) ||
177
177
strings .Contains (errStr , "overflows" ) ||
178
178
strings .Contains (errStr , "Invalid year value" ) ||
179
+ strings .Contains (errStr , "cannot convert datum from unsigned bigint to type year" ) ||
179
180
strings .Contains (errStr , "Incorrect time value" ) ||
180
181
strings .Contains (errStr , "Incorrect datetime value" ) ||
181
182
strings .Contains (errStr , "Incorrect timestamp value" ) ||
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import (
22
22
"github.com/ngaut/log"
23
23
)
24
24
25
- const follow_nums = 2
25
+ const follow_nums = 3
26
26
27
27
func PadLeft (str , pad string , length int ) string {
28
28
if len (str ) >= length {
Original file line number Diff line number Diff line change 33
33
concurrency = flag .Int ("concurrency" , 20 , "concurrency" )
34
34
tablesToCreate = flag .Int ("tables" , 1 , "the number of the tables to create" )
35
35
mysqlCompatible = flag .Bool ("mysql-compatible" , false , "disable TiDB-only features" )
36
- testTime = flag .Duration ("time" , 5 * time .Hour , "test time" )
36
+ testTime = flag .Duration ("time" , 6 * time .Hour , "test time" )
37
37
output = flag .String ("output" , "" , "output file" )
38
38
)
39
39
You can’t perform that action at this time.
0 commit comments