From a42e0830a78fbc6effee9f0e7dee6c49ebfe2bdb Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 16 Oct 2006 16:27:06 +0300 Subject: [PATCH] Merge update of the fix for bug 14019 in 5.0 --- mysql-test/r/group_by.result | 4 ++++ 1 file changed, 4 insertions(+) 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