After merge fix.

parent 66093b79
...@@ -3239,7 +3239,7 @@ Item_func_group_concat::fix_fields(THD *thd, Item **ref) ...@@ -3239,7 +3239,7 @@ Item_func_group_concat::fix_fields(THD *thd, Item **ref)
char *buf; char *buf;
String *new_separator; String *new_separator;
if (!(buf= thd->stmt_arena->alloc(buflen)) || if (!(buf= (char*) thd->stmt_arena->alloc(buflen)) ||
!(new_separator= new(thd->stmt_arena->mem_root) !(new_separator= new(thd->stmt_arena->mem_root)
String(buf, buflen, collation.collation))) String(buf, buflen, collation.collation)))
return TRUE; return TRUE;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment