summaryrefslogtreecommitdiff
path: root/mysql-test/t/group_by.test
diff options
context:
space:
mode:
authorigor@rurik.mysql.com <>2005-06-21 08:15:49 -0700
committerigor@rurik.mysql.com <>2005-06-21 08:15:49 -0700
commit6a721d03d63561b3f94846e6d364b81b05b2bf58 (patch)
treeaa018577f36b4e1a202d66482464a98725f26231 /mysql-test/t/group_by.test
parent295645b688e7dc9c91d54c980a1ebd4779e61725 (diff)
downloadmariadb-git-6a721d03d63561b3f94846e6d364b81b05b2bf58.tar.gz
group_by.result, group_by.test:
Correction for the test case of bug #11295 to remove warning.
Diffstat (limited to 'mysql-test/t/group_by.test')
-rw-r--r--mysql-test/t/group_by.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/group_by.test b/mysql-test/t/group_by.test
index 694aa8d7411..be8bdbe892e 100644
--- a/mysql-test/t/group_by.test
+++ b/mysql-test/t/group_by.test
@@ -576,7 +576,7 @@ INSERT INTO t1 VALUES ('trans1'), ('trans2');
CREATE TABLE t2 (id varchar(20) NOT NULL, err_comment blob NOT NULL);
INSERT INTO t2 VALUES ('trans1', 'a problem');
-SELECT COUNT(DISTINCT(t1.id)), LEFT(err_comment, 256) AS err_comment
- FROM t1 LEFT JOIN t2 ON t1.id=t2.id GROUP BY err_comment;
+SELECT COUNT(DISTINCT(t1.id)), LEFT(err_comment, 256) AS comment
+ FROM t1 LEFT JOIN t2 ON t1.id=t2.id GROUP BY comment;
DROP TABLE t1, t2;