From 0e1cab6972fbdc6013be9c5658497250f7fe4943 Mon Sep 17 00:00:00 2001 From: wjHuang Date: Tue, 11 May 2021 18:46:18 +0800 Subject: [PATCH] Update integration_test.go --- 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 e24988e175797..9ca94556bb3d8 100755 --- a/expression/integration_test.go +++ b/expression/integration_test.go @@ -7770,7 +7770,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 ;").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")) }