diff options
author | unknown <konstantin@mysql.com> | 2005-03-18 00:41:03 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2005-03-18 00:41:03 +0300 |
commit | 6fc7c0742e99d45a1cedf9363ef705e85f8a563d (patch) | |
tree | 1ca65db383f8178ee9ebfe6f252fdf47ef48a001 /mysql-test/r/func_gconcat.result | |
parent | d1deb65996df91f999b643c595481a0c06b5f9ec (diff) | |
download | mariadb-git-6fc7c0742e99d45a1cedf9363ef705e85f8a563d.tar.gz |
Cleanup of Item_func_group_concat
mysql-test/r/func_gconcat.result:
Test result fixed.
sql/item_sum.cc:
Cleanup of Item_func_group_concat:
- last unobvious things commented
- don't store NULLs in the tree.
- remove unneeded variables.
- use setup_order, not setup_group to setup group concat order list
sql/item_sum.h:
Cleanup for Item_func_group_concat: remove unneded variables, methods,
move a bunch of variables to private: section.
Diffstat (limited to 'mysql-test/r/func_gconcat.result')
-rw-r--r-- | mysql-test/r/func_gconcat.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/func_gconcat.result b/mysql-test/r/func_gconcat.result index b5ffef1c582..09ff3fc5a6e 100644 --- a/mysql-test/r/func_gconcat.result +++ b/mysql-test/r/func_gconcat.result @@ -166,7 +166,7 @@ set group_concat_max_len = 1024; select group_concat(sum(a)) from t1 group by grp; ERROR HY000: Invalid use of group function select grp,group_concat(c order by 2) from t1 group by grp; -ERROR 42S22: Unknown column '2' in 'group statement' +ERROR 42S22: Unknown column '2' in 'order clause' drop table t1; create table t1 ( URL_ID int(11), URL varchar(80)); create table t2 ( REQ_ID int(11), URL_ID int(11)); |