Commit fb067e41 authored by marko's avatar marko

Revert the hunk on ha_innobase::innobase_read_and_init_auto_inc()

that was accidentally committed in r782.
parent a3c60017
...@@ -7075,14 +7075,11 @@ ha_innobase::innobase_read_and_init_auto_inc( ...@@ -7075,14 +7075,11 @@ ha_innobase::innobase_read_and_init_auto_inc(
in table.h says that 'next_number_field' is set when it is in table.h says that 'next_number_field' is set when it is
'active'. */ 'active'. */
my_bitmap_map *old_map; auto_inc = (longlong) table->found_next_number_field->
old_map= dbug_tmp_use_all_columns(table, table->read_set); val_int_offset(table->s->rec_buff_length) + 1;
auto_inc = (longlong) table->found_next_number_field-> }
val_int_offset(table->s->rec_buff_length) + 1;
dbug_tmp_restore_column_map(table->read_set, old_map); dict_table_autoinc_initialize(prebuilt->table, auto_inc);
}
dict_table_autoinc_initialize(prebuilt->table, auto_inc);
func_exit: func_exit:
(void) extra(HA_EXTRA_NO_KEYREAD); (void) extra(HA_EXTRA_NO_KEYREAD);
......
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