diff options
Diffstat (limited to 'mysql-test/main/subselect_innodb.test')
-rw-r--r-- | mysql-test/main/subselect_innodb.test | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/mysql-test/main/subselect_innodb.test b/mysql-test/main/subselect_innodb.test index edb5cefce46..8a2ef8fd9ac 100644 --- a/mysql-test/main/subselect_innodb.test +++ b/mysql-test/main/subselect_innodb.test @@ -666,18 +666,4 @@ select 1 from t1 where not exists --enable_warnings drop table t1; ---echo # ---echo # MDEV-28437: Assertion `!eliminated' failed in Item_subselect::exec ---echo # -CREATE TABLE t1 (a INT) ENGINE=InnoDB; -INSERT INTO t1 VALUES (1),(2); -CREATE TABLE t2 (b INT PRIMARY KEY) ENGINE=InnoDB; -INSERT INTO t1 VALUES (3),(4); -#enable after fix MDEV-27871 ---disable_view_protocol -SELECT 1 IN (SELECT a FROM t1 LEFT JOIN t2 ON (a = b AND EXISTS (SELECT * FROM t1))); ---enable_view_protocol -drop table t1,t2; - # End of 10.2 tests - |