Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: wjhuang2016 <huangwenjun1997@gmail.com>
  • Loading branch information
wjhuang2016 committed May 12, 2021
1 parent cd22796 commit 82a6f9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion expression/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"))
}

Expand Down

0 comments on commit 82a6f9b

Please sign in to comment.