mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
e926964cb8
The test innodb.innodb_bug60049 used to check that the record
(ID,NAME)=(12,'SYS_FOREIGN_COLS') is the last record in the
secondary index of the system table SYS_TABLES.
But, ever since commit 2336558423
or mysql/mysql-server@082d59670f
that record no longer is the last one in the table!
The more recent test innodb.purge_secondary covers the purge
functionality much better.
9 lines
258 B
Text
9 lines
258 B
Text
CREATE TABLE t(a INT)ENGINE=InnoDB STATS_PERSISTENT=0;
|
|
RENAME TABLE t TO u;
|
|
DROP TABLE u;
|
|
SELECT @@innodb_fast_shutdown;
|
|
@@innodb_fast_shutdown
|
|
0
|
|
Last record of ID_IND root page (9):
|
|
18080000180500c0000000000000000c5359535f464f524549474e5f434f4c53
|
|
# restart
|