summaryrefslogtreecommitdiff
path: root/mysql-test/r/bool.result
diff options
context:
space:
mode:
authorunknown <ram@gw.mysql.r18.ru>2003-10-31 13:02:16 +0400
committerunknown <ram@gw.mysql.r18.ru>2003-10-31 13:02:16 +0400
commit506631e771ad3f0a62a96ac790bad1da0e7d6845 (patch)
tree73854a7204c173fd0d761beae490b09e30278643 /mysql-test/r/bool.result
parentbc8f801bf0f239b85ee95ea5410915f0f5424fc1 (diff)
downloadmariadb-git-506631e771ad3f0a62a96ac790bad1da0e7d6845.tar.gz
WL #1056: Eliminate NOT operators from where condition
Diffstat (limited to 'mysql-test/r/bool.result')
-rw-r--r--mysql-test/r/bool.result3
1 files changed, 0 insertions, 3 deletions
diff --git a/mysql-test/r/bool.result b/mysql-test/r/bool.result
index 890c85dc946..a054eceec0c 100644
--- a/mysql-test/r/bool.result
+++ b/mysql-test/r/bool.result
@@ -42,9 +42,6 @@ SELECT * FROM t1 WHERE a=2 OR (NULL AND (@a:=@a+1));
a
SELECT * FROM t1 WHERE NOT(a=2 OR (NULL AND (@b:=@b+1)));
a
-SELECT @a, @b;
-@a @b
-0 6
DROP TABLE t1;
create table t1 (a int, b int);
insert into t1 values(null, null), (0, null), (1, null), (null, 0), (null, 1), (0, 0), (0, 1), (1, 0), (1, 1);