diff options
author | ram@gw.mysql.r18.ru <> | 2004-10-10 12:10:53 +0500 |
---|---|---|
committer | ram@gw.mysql.r18.ru <> | 2004-10-10 12:10:53 +0500 |
commit | 5f857a7a82c29dc34bdb8d1cd49585c687dd1b97 (patch) | |
tree | 81505c3e8298623fa6768b023028177b39282253 /sql/sql_table.cc | |
parent | b751796aa28e02279d31e22e49f1ca4e85e11596 (diff) | |
download | mariadb-git-5f857a7a82c29dc34bdb8d1cd49585c687dd1b97.tar.gz |
Blob support for the group_concat() function.
(Bug #4315: GROUP_CONCAT with ORDER BY returns strange results for TEXT fields
Bug #5564: Strange behaviour with group_concat and distinct
Bug #5970: group_concat doesn't print warnings)
Diffstat (limited to 'sql/sql_table.cc')
-rw-r--r-- | sql/sql_table.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_table.cc b/sql/sql_table.cc index 76975bf71c6..65e23c7ba1d 100644 --- a/sql/sql_table.cc +++ b/sql/sql_table.cc @@ -1378,7 +1378,7 @@ TABLE *create_table_from_items(THD *thd, HA_CREATE_INFO *create_info, field=item->tmp_table_field(&tmp_table); else field=create_tmp_field(thd, &tmp_table, item, item->type(), - (Item ***) 0, &tmp_field,0,0); + (Item ***) 0, &tmp_field, 0, 0, 0); if (!field || !(cr_field=new create_field(field,(item->type() == Item::FIELD_ITEM ? ((Item_field *)item)->field : |