Skip to content

Commit

Permalink
MDEV-8779: mysqld got signal 11 in sql/opt_range_mrr.cc:100(step_down…
Browse files Browse the repository at this point in the history
…_to)

Post fix: initialize a variable
  • Loading branch information
spetrunia committed Sep 21, 2015
1 parent 22cc8f9 commit e96f3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sql/opt_range.cc
Original file line number Diff line number Diff line change
Expand Up @@ -4328,7 +4328,7 @@ static bool create_partition_index_description(PART_PRUNE_PARAM *ppar)
part_info->subpart_field_array;
bool in_subpart_fields= FALSE;
uint max_key_len= 0;
uint cur_key_len;
uint cur_key_len= 0;
for (uint part= 0; part < total_parts; part++, key_part++)
{
key_part->key= 0;
Expand Down

0 comments on commit e96f3c7

Please sign in to comment.