From cccd70f88c80ac9e4e8a7c8de31da51fe27fb15c Mon Sep 17 00:00:00 2001 From: wjhuang2016 Date: Tue, 30 Nov 2021 18:01:16 +0800 Subject: [PATCH] fix Signed-off-by: wjhuang2016 --- planner/core/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planner/core/integration_test.go b/planner/core/integration_test.go index b1a5ae3b94a5c..d47d0132384c2 100644 --- a/planner/core/integration_test.go +++ b/planner/core/integration_test.go @@ -4907,6 +4907,6 @@ func (s *testIntegrationSerialSuite) TestIssue30271(c *C) { tk.MustExec("create table t(a char(10), b char(10), c char(10), index (a, b, c)) collate utf8mb4_bin;") tk.MustExec("insert into t values ('b', 'a', '1'), ('b', 'A', '2'), ('c', 'a', '3');") tk.MustExec("set names utf8mb4 collate utf8mb4_general_ci;") - tk.MustQuery("select * from t where (a>'a' and b='a') or (b = 'A' and a < 'd') order by a,c;").Check(testkit.Rows("b a 1", "b, A 2", "c a 3")) + tk.MustQuery("select * from t where (a>'a' and b='a') or (b = 'A' and a < 'd') order by a,c;").Check(testkit.Rows("b a 1", "b A 2", "c a 3")) }