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;")