diff options
author | unknown <antony@ltantony.rdg.cyberkinetica.homeunix.net> | 2004-11-27 19:26:46 +0000 |
---|---|---|
committer | unknown <antony@ltantony.rdg.cyberkinetica.homeunix.net> | 2004-11-27 19:26:46 +0000 |
commit | 9bc0324665ff77e97ad14630d8e21e1244e30970 (patch) | |
tree | 28c419d3dc4e1647c879b0d0707485cc1109572d /mysql-test/t/bool.test | |
parent | 3c276f41baf53f0fe6412fd4aa664d9e67919c46 (diff) | |
download | mariadb-git-9bc0324665ff77e97ad14630d8e21e1244e30970.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.test | 2 |
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; |