diff options
author | Oleksandr Byelkin <sanja@mariadb.com> | 2016-03-01 21:10:59 +0100 |
---|---|---|
committer | Oleksandr Byelkin <sanja@mariadb.com> | 2016-03-01 21:10:59 +0100 |
commit | 6c414fcf89510215d6d3466eb9992d444eadae89 (patch) | |
tree | 181c6b01ffe0b78d92f724d91e8315bed81e5f7e /sql/sql_insert.cc | |
parent | 66832b619510f5b9724d8db1eac48bdafb9225e9 (diff) | |
download | mariadb-git-6c414fcf89510215d6d3466eb9992d444eadae89.tar.gz |
MDEV-5542: GROUP_CONCAT truncate output to 65.536 chars when using DISTINCT or ORDER BY
port of mysql fix WL#6098
Diffstat (limited to 'sql/sql_insert.cc')
-rw-r--r-- | sql/sql_insert.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_insert.cc b/sql/sql_insert.cc index 7122fbb16b3..f8a755c8d5e 100644 --- a/sql/sql_insert.cc +++ b/sql/sql_insert.cc @@ -3893,7 +3893,7 @@ Field *Item::create_field_for_create_select(THD *thd, TABLE *table) { Field *def_field, *tmp_field; return create_tmp_field(thd, table, this, type(), - (Item ***) 0, &tmp_field, &def_field, 0, 0, 0, 0, 0); + (Item ***) 0, &tmp_field, &def_field, 0, 0, 0, 0); } |