Commit 936b6fab authored by unknown's avatar unknown

Compiler warning fixed.

parent 557303b8
...@@ -2718,9 +2718,8 @@ dynamic_column_update_copy(DYNAMIC_COLUMN *str, PLAN *plan, ...@@ -2718,9 +2718,8 @@ dynamic_column_update_copy(DYNAMIC_COLUMN *str, PLAN *plan,
new_hdr->header_size + new_hdr->nmpool_size; new_hdr->header_size + new_hdr->nmpool_size;
for (i= 0, j= 0; i < add_column_count || j < hdr->column_count; i++) for (i= 0, j= 0; i < add_column_count || j < hdr->column_count; i++)
{ {
size_t first_offset; size_t UNINIT_VAR(first_offset);
uint start= j, end; uint start= j, end;
LINT_INIT(first_offset);
/* /*
Search in i and j for the next column to add from i and where to Search in i and j for the next column to add from i and where to
...@@ -2868,9 +2867,8 @@ dynamic_column_update_move_left(DYNAMIC_COLUMN *str, PLAN *plan, ...@@ -2868,9 +2867,8 @@ dynamic_column_update_move_left(DYNAMIC_COLUMN *str, PLAN *plan,
i < add_column_count || j < column_count; i < add_column_count || j < column_count;
i++) i++)
{ {
size_t first_offset; size_t UNINIT_VAR(first_offset);
uint start= j, end; uint start= j, end;
LINT_INIT(first_offset);
/* /*
Search in i and j for the next column to add from i and where to Search in i and j for the next column to add from i and where to
...@@ -3058,9 +3056,8 @@ dynamic_column_update_move_right(DYNAMIC_COLUMN *str, PLAN *plan, ...@@ -3058,9 +3056,8 @@ dynamic_column_update_move_right(DYNAMIC_COLUMN *str, PLAN *plan,
i < add_column_count || j < column_count; i < add_column_count || j < column_count;
i++) i++)
{ {
size_t first_offset; size_t UNINIT_VAR(first_offset);
uint start= j, end; uint start= j, end;
LINT_INIT(first_offset);
/* /*
Search in i and j for the next column to add from i and where to Search in i and j for the next column to add from i and where to
......
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