Merge update of the fix for bug 14019 in 5.0

This commit is contained in:
gkodinov/kgeorge@macbook.gmz 2006-10-16 16:27:06 +03:00
parent dff0a1ac7c
commit 6b10eebe2c

View file

@ -802,8 +802,12 @@ a
set sql_mode='';
SELECT a FROM t1 HAVING 'a' > 1;
a
Warnings:
Warning 1292 Truncated incorrect DOUBLE value: 'a'
SELECT a FROM t1 HAVING "a" > 1;
a
Warnings:
Warning 1292 Truncated incorrect DOUBLE value: 'a'
SELECT a FROM t1 HAVING `a` > 1;
a
2