summaryrefslogtreecommitdiff
path: root/mysql-test/t/bool.test
diff options
context:
space:
mode:
authorantony@ltantony.rdg.cyberkinetica.homeunix.net <>2004-11-27 19:26:46 +0000
committerantony@ltantony.rdg.cyberkinetica.homeunix.net <>2004-11-27 19:26:46 +0000
commitf595216869ce96a341f272c10bf9314a09d6ef8b (patch)
tree28c419d3dc4e1647c879b0d0707485cc1109572d /mysql-test/t/bool.test
parent2c3159eb9e1900b7e7357020b8f7a07a85d5cd6c (diff)
downloadmariadb-git-f595216869ce96a341f272c10bf9314a09d6ef8b.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;