mirror of
https://github.com/MariaDB/server.git
synced 2026-04-20 23:35:32 +02:00
Applied innodb-5.0-ss492 snapshot.
Fixed BUG#19217 "dict_load_indexes() may read the delete-mark incorrectly". innobase/dict/dict0load.c: Applied innodb-5.0-ss492 snapshot. dict_load_indexes(): pass comp=0 to rec_get_deleted_flag(), because SYS_INDEXES always is in ROW_FORMAT=REDUNDANT (Bug #19217).
This commit is contained in:
parent
8e28ab1f40
commit
0b64b88257
1 changed files with 1 additions and 1 deletions
|
|
@ -617,7 +617,7 @@ dict_load_indexes(
|
|||
break;
|
||||
}
|
||||
|
||||
if (rec_get_deleted_flag(rec, table->comp)) {
|
||||
if (rec_get_deleted_flag(rec, 0)) {
|
||||
dict_load_report_deleted_index(table->name,
|
||||
ULINT_UNDEFINED);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue