Commit 928b21a9 authored by unknown's avatar unknown

The compiler warning about ';' fix.

parent 72c33d24
...@@ -3884,7 +3884,10 @@ bool Item_func_dyncol_create::fix_fields(THD *thd, Item **ref) ...@@ -3884,7 +3884,10 @@ bool Item_func_dyncol_create::fix_fields(THD *thd, Item **ref)
vals= (DYNAMIC_COLUMN_VALUE *) alloc_root(thd->mem_root, vals= (DYNAMIC_COLUMN_VALUE *) alloc_root(thd->mem_root,
sizeof(DYNAMIC_COLUMN_VALUE) * sizeof(DYNAMIC_COLUMN_VALUE) *
(arg_count / 2)); (arg_count / 2));
for (i= 0; i + 1 < arg_count && args[i]->result_type() == INT_RESULT; i+= 2); for (i= 0;
i + 1 < arg_count && args[i]->result_type() == INT_RESULT;
i+= 2)
;
if (i + 1 < arg_count) if (i + 1 < arg_count)
{ {
names= TRUE; names= 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