From fe9bbec4c0c48a680dbfeecd4d334679bc7bd5d4 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 23 Nov 2002 15:49:12 +0200 Subject: [PATCH] reverting a test that belongs to 3.23 --- mysql-test/r/delete.result | 6 ------ mysql-test/t/delete.test | 5 ----- 2 files changed, 11 deletions(-) diff --git a/mysql-test/r/delete.result b/mysql-test/r/delete.result index e3e95c79fb7..c2230722aa6 100644 --- a/mysql-test/r/delete.result +++ b/mysql-test/r/delete.result @@ -24,9 +24,3 @@ create table t1 (a bigint not null, primary key (a,a,a,a,a,a,a,a,a,a)); insert into t1 values (2),(4),(6),(8),(10),(12),(14),(16),(18),(20),(22),(24),(26),(23),(27); delete from t1 where a=27; drop table t1; -create table t1 (id int, index(id)); -insert into t1 values(NULL); -delete from t1 where id <=> NULL; -select * from t1; -id -drop table if exists t1; diff --git a/mysql-test/t/delete.test b/mysql-test/t/delete.test index fc57fdabcd5..953e22cdd55 100644 --- a/mysql-test/t/delete.test +++ b/mysql-test/t/delete.test @@ -35,8 +35,3 @@ create table t1 (a bigint not null, primary key (a,a,a,a,a,a,a,a,a,a)); insert into t1 values (2),(4),(6),(8),(10),(12),(14),(16),(18),(20),(22),(24),(26),(23),(27); delete from t1 where a=27; drop table t1; -create table t1 (id int, index(id)); -insert into t1 values(NULL); -delete from t1 where id <=> NULL; -select * from t1; -drop table if exists t1;