diff options
author | unknown <gkodinov/kgeorge@macbook.gmz> | 2006-10-16 16:27:06 +0300 |
---|---|---|
committer | unknown <gkodinov/kgeorge@macbook.gmz> | 2006-10-16 16:27:06 +0300 |
commit | a42e0830a78fbc6effee9f0e7dee6c49ebfe2bdb (patch) | |
tree | 3a318fea636169981a60d583a08fb833a2284177 /mysql-test/r/group_by.result | |
parent | fe4a68fb3cd4178b49c824b7a375e505e89e792a (diff) | |
download | mariadb-git-a42e0830a78fbc6effee9f0e7dee6c49ebfe2bdb.tar.gz |
Merge update of the fix for bug 14019 in 5.0
Diffstat (limited to 'mysql-test/r/group_by.result')
-rw-r--r-- | mysql-test/r/group_by.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/group_by.result b/mysql-test/r/group_by.result index 679106bd71b..7d1e8832069 100644 --- a/mysql-test/r/group_by.result +++ b/mysql-test/r/group_by.result @@ -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 |