Commit 5138bf42 authored by Sergei Golubchik's avatar Sergei Golubchik

compilation error with -Wuninitialized -Werror

parent e400450f
...@@ -2084,7 +2084,7 @@ TABLE *Delayed_insert::get_local_table(THD* client_thd) ...@@ -2084,7 +2084,7 @@ TABLE *Delayed_insert::get_local_table(THD* client_thd)
{ {
my_ptrdiff_t adjust_ptrs; my_ptrdiff_t adjust_ptrs;
Field **field,**org_field, *found_next_number_field; Field **field,**org_field, *found_next_number_field;
Field **vfield; Field **UNINIT_VAR(vfield);
TABLE *copy; TABLE *copy;
TABLE_SHARE *share; TABLE_SHARE *share;
uchar *bitmap; uchar *bitmap;
......
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