Commit 1b07911b authored by Marko Mäkelä's avatar Marko Mäkelä

dict_mem_table_col_rename_low(): Skip dropped columns

parent 5a390ffa
......@@ -529,6 +529,14 @@ dict_mem_table_col_rename_low(
= dict_index_get_nth_field(
index, i);
ut_ad(!field->name
== field->col->is_dropped());
if (!field->name) {
/* dropped columns lack a name */
ut_ad(index->is_instant());
continue;
}
/* if is_virtual and that in field->col does
not match, continue */
if ((!is_virtual) !=
......
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