summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorunknown <Sinisa@sinisa.nasamreza.org>2002-11-23 15:49:12 +0200
committerunknown <Sinisa@sinisa.nasamreza.org>2002-11-23 15:49:12 +0200
commitfe9bbec4c0c48a680dbfeecd4d334679bc7bd5d4 (patch)
tree20fa2d40e2ebe71340f3071410632316d7143bdf
parent89083f2d6d078eb25f1fe013d8cd5bc46b9a631c (diff)
downloadmariadb-git-fe9bbec4c0c48a680dbfeecd4d334679bc7bd5d4.tar.gz
reverting a test that belongs to 3.23
-rw-r--r--mysql-test/r/delete.result6
-rw-r--r--mysql-test/t/delete.test5
2 files changed, 0 insertions, 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;