Skip to content

Commit

Permalink
fix 123
Browse files Browse the repository at this point in the history
  • Loading branch information
ymakedaq committed Sep 11, 2024
1 parent cf90e44 commit 88386b4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ func (c CreateTableResult) ColCharsetNotEqTbCharset() bool {
if lo.IsEmpty(tableDefineCharset) {
return false
}
if strings.Compare(strings.ToUpper(colCharsets[0]), tableDefineCharset) == 0 {
if strings.Compare(strings.ToLower(colCharsets[0]), strings.ToLower(tableDefineCharset)) == 0 {
return false
}
return true
Expand Down

0 comments on commit 88386b4

Please sign in to comment.