Skip to content

Commit

Permalink
Update expression/collation_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
tisonkun authored Oct 27, 2021
1 parent ee5ba77 commit f978085
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion expression/collation_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func TestCompareString(t *testing.T) {
chk.Column(1).AppendString("a ")
for i := 0; i < 4; i++ {
v, isNull, err := CompareStringWithCollationInfo(ctx, col1, col2, chk.GetRow(0), chk.GetRow(0), "utf8_general_ci")
require.Nil(t, err)
require.NoError(t, err)
require.False(t, isNull)
require.Equal(t, int64(0), v)
}
Expand Down

0 comments on commit f978085

Please sign in to comment.