mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 02:51:44 +01:00
Merge update of the fix for bug 14019 in 5.0
This commit is contained in:
parent
dff0a1ac7c
commit
6b10eebe2c
1 changed files with 4 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue