From 82a6f9b074b46be95757a9f3ce3d2a41471d32fa Mon Sep 17 00:00:00 2001 From: wjhuang2016 Date: Wed, 12 May 2021 14:57:29 +0800 Subject: [PATCH] fix Signed-off-by: wjhuang2016 --- expression/integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expression/integration_test.go b/expression/integration_test.go index 45e1e1d58d0c5..e718c66b025e3 100755 --- a/expression/integration_test.go +++ b/expression/integration_test.go @@ -7775,7 +7775,7 @@ func (s *testIntegrationSerialSuite) TestCollationMergeJoin(c *C) { tk.MustExec("insert into t values ('a', 23, 'h5');") tk.MustExec("insert into t values ('a', 23, 'h6');") tk.MustExec("insert into t values ('a', 23, 'h7');") - tk.MustQuery("select /*+ MERGE_JOIN(t) */ t.* from t where col_13 in ( select col_10 from t where t.col_13 in ( 'a', 'b' ) ) order by col_10, col_11 ;").Check( + tk.MustQuery("select /*+ MERGE_JOIN(t) */ t.* from t where col_13 in ( select col_10 from t where t.col_13 in ( 'a', 'b' ) ) order by col_10, col_11;").Check( testkit.Rows("\x41 2.00000 a", "\x61 23.00000 A", "\x61 12523.00000 A")) }