diff options
Diffstat (limited to 'sql/key.cc')
-rw-r--r-- | sql/key.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/key.cc b/sql/key.cc index d103c07eb72..8520dee215e 100644 --- a/sql/key.cc +++ b/sql/key.cc @@ -269,5 +269,13 @@ bool check_if_key_used(TABLE *table, uint idx, List<Item> &fields) return 1; } } + + /* + If table handler has primary key as part of the index, check that primary + key is not updated + */ + if (idx != table->primary_key && table->primary_key < MAX_KEY && + (table->file->option_flag() & HA_PRIMARY_KEY_IN_READ_INDEX)) + return check_if_key_used(table, table->primary_key, fields); return 0; } |