summaryrefslogtreecommitdiff
path: root/mysql-test/r/func_test.result
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2016-06-29 18:55:14 +0200
committerSergei Golubchik <serg@mariadb.org>2016-06-30 11:43:02 +0200
commit8f9530a9ab14936a2d8a184527acca73775eb677 (patch)
tree884d0b98e7121dd7e44604b22d8e7c5ddf2ce6df /mysql-test/r/func_test.result
parent80de816df0fd40467261f3516184d495a6aaae63 (diff)
downloadmariadb-git-8f9530a9ab14936a2d8a184527acca73775eb677.tar.gz
revert second lookahead in the lexer
it's not enough to look for NOT NULL IS, this also fails queries like SELECT NOT NULL <=> NULL; and adds no value anymore, as the grammar now requires parentheses
Diffstat (limited to 'mysql-test/r/func_test.result')
-rw-r--r--mysql-test/r/func_test.result2
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/func_test.result b/mysql-test/r/func_test.result
index 8c4c78460d5..ddd71e5d110 100644
--- a/mysql-test/r/func_test.result
+++ b/mysql-test/r/func_test.result
@@ -320,7 +320,7 @@ id select_type table type possible_keys key key_len ref rows filtered Extra
Warnings:
Note 1003 select `test`.`t1`.`a` AS `a` from `test`.`t1` where (not((`test`.`t1`.`a` + 0)))
select not 1, not null, not not null, 1 is not null;
-not 1 NULL not not null 1 is not null
+not 1 not null not not null 1 is not null
0 NULL NULL 1
drop table t1;
#