Commit 13a58656 authored by unknown's avatar unknown

merge

parents 57baca24 ed11cfa9
...@@ -185,7 +185,7 @@ void *my_realloc(void *oldpoint, size_t size, myf my_flags) ...@@ -185,7 +185,7 @@ void *my_realloc(void *oldpoint, size_t size, myf my_flags)
/* memory moved between system and thread specific */ /* memory moved between system and thread specific */
update_malloc_size(-(longlong) old_size - MALLOC_PREFIX_SIZE, old_flags); update_malloc_size(-(longlong) old_size - MALLOC_PREFIX_SIZE, old_flags);
update_malloc_size((longlong) size + MALLOC_PREFIX_SIZE, update_malloc_size((longlong) size + MALLOC_PREFIX_SIZE,
my_flags & MY_THREAD_SPECIFIC); test(my_flags & MY_THREAD_SPECIFIC));
} }
else else
update_malloc_size((longlong)size - (longlong)old_size, old_flags); update_malloc_size((longlong)size - (longlong)old_size, old_flags);
......
...@@ -1038,7 +1038,7 @@ class Item_func_dyncol_json: public Item_str_func ...@@ -1038,7 +1038,7 @@ class Item_func_dyncol_json: public Item_str_func
String *val_str(String *); String *val_str(String *);
void fix_length_and_dec() void fix_length_and_dec()
{ {
maybe_null= TRUE; set_persist_maybe_null(1);
collation.set(&my_charset_bin); collation.set(&my_charset_bin);
decimals= 0; decimals= 0;
} }
......
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