diff options
author | aivanov@mysql.com <> | 2006-04-26 07:50:29 +0400 |
---|---|---|
committer | aivanov@mysql.com <> | 2006-04-26 07:50:29 +0400 |
commit | 422071a83eca1e56ea474f6684de36f0d756785a (patch) | |
tree | 5c7c62767cb5746ba165ce6419a1d4cd10563d14 /innobase | |
parent | 8301e6f62526b63a1153e8bb624f04da4c9d8927 (diff) | |
download | mariadb-git-422071a83eca1e56ea474f6684de36f0d756785a.tar.gz |
Applied innodb-5.0-ss492 snapshot.
Fixed BUG#19217 "dict_load_indexes() may read the delete-mark incorrectly".
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/dict/dict0load.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/dict/dict0load.c b/innobase/dict/dict0load.c index bd93a719f6c..8e197e0c2d0 100644 --- a/innobase/dict/dict0load.c +++ b/innobase/dict/dict0load.c @@ -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); |