1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Change sql_mode BROKEN_NOT to HIGH_NOT_PRECEDENCE

This commit is contained in:
unknown
2004-11-27 19:26:46 +00:00
parent cf1de7d9da
commit d777a9aa6a
8 changed files with 9 additions and 9 deletions

View File

@@ -33,7 +33,7 @@ a
SELECT * FROM t1 where (1 AND a) IS NULL;
a
NULL
set sql_mode='broken_not';
set sql_mode='high_not_precedence';
select * from t1 where not a between 2 and 3;
a
set sql_mode=default;