diff options
author | unknown <igor@rurik.mysql.com> | 2005-06-21 08:15:49 -0700 |
---|---|---|
committer | unknown <igor@rurik.mysql.com> | 2005-06-21 08:15:49 -0700 |
commit | 50f40a62d1bb0b01621dbb18a07780e45ac2dfed (patch) | |
tree | aa018577f36b4e1a202d66482464a98725f26231 /mysql-test/t/group_by.test | |
parent | 7a93050bfc23a46843673bf6bd8774486490495d (diff) | |
download | mariadb-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.test | 4 |
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; |