From 30456dfaa558958eb268de0c97eb54614a014a86 Mon Sep 17 00:00:00 2001 From: Null not nil <67764674+nullnotnil@users.noreply.github.com> Date: Tue, 25 Aug 2020 03:48:52 -0600 Subject: [PATCH] executor: Uncomment join test (#18697) Co-authored-by: ti-srebot <66930949+ti-srebot@users.noreply.github.com> --- executor/join_test.go | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/executor/join_test.go b/executor/join_test.go index a4f144d9b0dc2..d464893f40dee 100644 --- a/executor/join_test.go +++ b/executor/join_test.go @@ -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);") @@ -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;")