diff options
author | unknown <ram@gw.mysql.r18.ru> | 2003-10-31 13:02:16 +0400 |
---|---|---|
committer | unknown <ram@gw.mysql.r18.ru> | 2003-10-31 13:02:16 +0400 |
commit | 506631e771ad3f0a62a96ac790bad1da0e7d6845 (patch) | |
tree | 73854a7204c173fd0d761beae490b09e30278643 /mysql-test/r/bool.result | |
parent | bc8f801bf0f239b85ee95ea5410915f0f5424fc1 (diff) | |
download | mariadb-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.result | 3 |
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); |