summaryrefslogtreecommitdiff
path: root/mysql-test/t/group_by.test
diff options
context:
space:
mode:
authorunknown <igor@rurik.mysql.com>2005-06-21 08:15:49 -0700
committerunknown <igor@rurik.mysql.com>2005-06-21 08:15:49 -0700
commit50f40a62d1bb0b01621dbb18a07780e45ac2dfed (patch)
treeaa018577f36b4e1a202d66482464a98725f26231 /mysql-test/t/group_by.test
parent7a93050bfc23a46843673bf6bd8774486490495d (diff)
downloadmariadb-git-50f40a62d1bb0b01621dbb18a07780e45ac2dfed.tar.gz
group_by.result, group_by.test:
Correction for the test case of bug #11295 to remove warning. mysql-test/t/group_by.test: Correction for the test case of bug #11295 to remove warning. mysql-test/r/group_by.result: 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;