Skip to content

Commit

Permalink
Update integration_test.go
Browse files Browse the repository at this point in the history
  • Loading branch information
wjhuang2016 authored May 11, 2021
1 parent 976d97a commit 0e1cab6
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 @@ -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"))
}

Expand Down

0 comments on commit 0e1cab6

Please sign in to comment.