Commit 87413528 authored by Marko Mäkelä's avatar Marko Mäkelä

rec_get_offsets_func(): Relax an assertion for ROW_FORMAT=REDUNDANT

parent 6d7f1d9b
......@@ -1120,7 +1120,8 @@ rec_get_offsets_func(
|| dict_index_is_ibuf(index)
|| n == n_fields /* btr_pcur_restore_position() */
|| (n + (index->id == DICT_INDEXES_ID)
>= index->n_core_fields && n <= index->n_fields));
>= index->n_core_fields && n <= index->n_fields
+ index->table->n_dropped_cols));
if (is_user_rec && leaf && n < index->n_fields) {
ut_ad(!index->is_dummy);
......
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