1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-28 13:01:41 +03:00

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