TL;DR
-
information_schema.tables
(SHOW TABLE STATUS
はここから値を持って生きている)の値は information_schema_stats_expiry 秒間更新されない - なので
SET SESSION information_schema_stats_expiry = 0
とかするとほぼ今まで通りの挙動になる - See also, MySQL Bugs: #91038: AUTO_INCREMENT does not increase automatically
空っぽのテーブルを用意する。
mysql80 111566> SHOW TABLE STATUS\G
*************************** 1. row ***************************
Name: t1
Engine: InnoDB
Version: 10
Row_format: Dynamic
Rows: 0 …
[さらに読む]