Skip to content

Commit 7f3dfbd

Browse files
committed
add more error filter
Signed-off-by: Weizhen Wang <[email protected]>
1 parent 334e0d3 commit 7f3dfbd

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

ddl/run.go

+8-5
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,8 @@ func dmlIgnoreError(err error) bool {
135135
strings.Contains(errStr, "Bad Number") ||
136136
strings.Contains(errStr, "invalid year") ||
137137
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") {
139140
return true
140141
}
141142
return false
@@ -175,16 +176,18 @@ func ddlIgnoreError(err error) bool {
175176
strings.Contains(errStr, "Unsupported modifying collation of column") ||
176177
strings.Contains(errStr, "Data truncated") ||
177178
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") ||
180181
// 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") {
182185
fmt.Println(errStr)
183186
return true
184187
}
185188
if strings.Contains(errStr, "table doesn't exist") ||
186189
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") ||
188191
strings.Contains(errStr, "is not exists") || strings.Contains(errStr, "column does not exist") ||
189192
strings.Contains(errStr, "doesn't exist") || strings.Contains(errStr, "Unknown table") ||
190193
strings.Contains(errStr, "admin show ddl jobs len != len(tasks)") ||

0 commit comments

Comments
 (0)