Commit bb86948f authored by marko's avatar marko

Merge r487 from branches/5.0:

dict_load_indexes(): pass comp=0 to rec_get_deleted_flag(),
because SYS_INDEXES always is in ROW_FORMAT=REDUNDANT.  (Bug #19217)
parent 6c0714b8
...@@ -617,7 +617,7 @@ dict_load_indexes( ...@@ -617,7 +617,7 @@ dict_load_indexes(
break; break;
} }
if (rec_get_deleted_flag(rec, dict_table_is_comp(table))) { if (rec_get_deleted_flag(rec, 0)) {
dict_load_report_deleted_index(table->name, dict_load_report_deleted_index(table->name,
ULINT_UNDEFINED); ULINT_UNDEFINED);
......
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