Skip to content

Commit

Permalink
executor: Uncomment join test (#18697)
Browse files Browse the repository at this point in the history
Co-authored-by: ti-srebot <[email protected]>
  • Loading branch information
Null not nil and ti-srebot authored Aug 25, 2020
1 parent e52cb37 commit 30456df
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions executor/join_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ func (s *testSuiteJoin2) TestJoinCast(c *C) {
result = tk.MustQuery("select * from t a , t1 b where (a.c1, a.c2) = (b.c1, b.c2);")
result.Check(testkit.Rows("1 2 1 2"))

/* Enable & fix this test after https://github.com/pingcap/tidb/issues/11895 is fixed.
/* Issue 11895 */
tk.MustExec("drop table if exists t;")
tk.MustExec("drop table if exists t1;")
tk.MustExec("create table t(c1 bigint unsigned);")
Expand All @@ -421,7 +421,6 @@ func (s *testSuiteJoin2) TestJoinCast(c *C) {
tk.MustExec("insert into t1 value(-1);")
result = tk.MustQuery("select * from t, t1 where t.c1 = t1.c1;")
c.Check(len(result.Rows()), Equals, 1)
*/

/* https://github.com/pingcap/tidb/issues/11896
tk.MustExec("drop table if exists t;")
Expand Down

0 comments on commit 30456df

Please sign in to comment.