@@ -135,7 +135,8 @@ func dmlIgnoreError(err error) bool {
135
135
strings .Contains (errStr , "Bad Number" ) ||
136
136
strings .Contains (errStr , "invalid year" ) ||
137
137
strings .Contains (errStr , "value is out of range in" ) ||
138
- strings .Contains (errStr , "Data Too Long" ) {
138
+ strings .Contains (errStr , "Data Too Long" ) ||
139
+ strings .Contains (errStr , "cannot convert datum from decimal to type year" ) {
139
140
return true
140
141
}
141
142
return false
@@ -175,16 +176,18 @@ func ddlIgnoreError(err error) bool {
175
176
strings .Contains (errStr , "Unsupported modifying collation of column" ) ||
176
177
strings .Contains (errStr , "Data truncated" ) ||
177
178
strings .Contains (errStr , "Bad Number" ) ||
178
- strings .Contains (errStr , "cannot convert" )||
179
- strings .Contains (errStr , "Data Too Long" )||
179
+ strings .Contains (errStr , "cannot convert" ) ||
180
+ strings .Contains (errStr , "Data Too Long" ) ||
180
181
// eg: For v"BLOB/TEXT column '319de167-6d2e-4778-966c-60b95103a02c' used in key specification without a key length"
181
- strings .Contains (errStr , "used in key specification without a key length" ) {
182
+ strings .Contains (errStr , "used in key specification without a key length" ) ||
183
+ strings .Contains (errStr , "Too many keys specified; max 64 keys allowed" ) ||
184
+ strings .Contains (errStr , "BLOB/TEXT/JSON column can't have a default value" ) {
182
185
fmt .Println (errStr )
183
186
return true
184
187
}
185
188
if strings .Contains (errStr , "table doesn't exist" ) ||
186
189
strings .Contains (errStr , "doesn't have a default value" ) ||
187
- strings .Contains (errStr ,"with composite index covered or Primary Key covered now" ) ||
190
+ strings .Contains (errStr , "with composite index covered or Primary Key covered now" ) ||
188
191
strings .Contains (errStr , "is not exists" ) || strings .Contains (errStr , "column does not exist" ) ||
189
192
strings .Contains (errStr , "doesn't exist" ) || strings .Contains (errStr , "Unknown table" ) ||
190
193
strings .Contains (errStr , "admin show ddl jobs len != len(tasks)" ) ||
0 commit comments