mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 17:33:44 +01:00
d546d1cc13
Assertion `inited==INDEX' failed in int handler::ha_index_first(uchar*) The crash was because errors from init_read_record_idx() was not taken care of.
8 lines
327 B
Text
8 lines
327 B
Text
START TRANSACTION WITH CONSISTENT SNAPSHOT;
|
|
CREATE TABLE IF NOT EXISTS t1 (pk INT PRIMARY KEY, i INT, KEY(i)) ENGINE=InnoDB;
|
|
UPDATE t1 SET i = 0;
|
|
ERROR HY000: Table definition has changed, please retry transaction
|
|
UPDATE t1 SET pk = 0;
|
|
ERROR HY000: Table definition has changed, please retry transaction
|
|
commit;
|
|
drop table t1;
|