mirror of
https://github.com/MariaDB/server.git
synced 2026-05-06 07:05:33 +02:00
Merge update of the fix for bug 14019 in 5.0
This commit is contained in:
parent
fe4a68fb3c
commit
a42e0830a7
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
Add a link
Reference in a new issue