mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
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.
9 lines
327 B
Plaintext
9 lines
327 B
Plaintext
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;
|