summaryrefslogtreecommitdiff
path: root/mysql-test/t/bool.test
diff options
context:
space:
mode:
authorunknown <antony@ltantony.rdg.cyberkinetica.homeunix.net>2004-11-27 19:26:46 +0000
committerunknown <antony@ltantony.rdg.cyberkinetica.homeunix.net>2004-11-27 19:26:46 +0000
commitd777a9aa6ab2b85beaab43ab5e10e07f2056fc90 (patch)
tree28c419d3dc4e1647c879b0d0707485cc1109572d /mysql-test/t/bool.test
parentcf1de7d9da102d11c3ac81efc5dbb51077dc235f (diff)
downloadmariadb-git-d777a9aa6ab2b85beaab43ab5e10e07f2056fc90.tar.gz
Change sql_mode BROKEN_NOT to HIGH_NOT_PRECEDENCE
Diffstat (limited to 'mysql-test/t/bool.test')
-rw-r--r--mysql-test/t/bool.test2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/bool.test b/mysql-test/t/bool.test
index 644fdbfbf60..53230dd5fa3 100644
--- a/mysql-test/t/bool.test
+++ b/mysql-test/t/bool.test
@@ -21,7 +21,7 @@ SELECT * FROM t1 where (1 AND a)=1;
SELECT * FROM t1 where (1 AND a) IS NULL;
# WL#638 - Behaviour of NOT does not follow SQL specification
-set sql_mode='broken_not';
+set sql_mode='high_not_precedence';
select * from t1 where not a between 2 and 3;
set sql_mode=default;
select * from t1 where not a between 2 and 3;