Bug #118893 | "SELECT AUTO_INCREMENT FROM information_schema.TABLES" reports a value that is reduced by one | ||
---|---|---|---|
Submitted: | 26 Aug 8:31 | Modified: | 26 Aug 9:42 |
Reporter: | Jonathan Haas | Email Updates: | |
Status: | Open | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | 9.4.0-1.el9 | OS: | Linux |
Assigned to: | CPU Architecture: | Any |
[26 Aug 8:31]
Jonathan Haas
[26 Aug 9:21]
Frederic Descamps
I don't have such behavior: SQL select version(); +-----------+ | version() | +-----------+ | 9.4.0 | +-----------+ 1 row in set (0.0004 sec) MySQL localhost test 2025-08-26 11:20:45 SQL show create table data_test \G *************************** 1. row *************************** Table: data_test Create Table: CREATE TABLE `data_test` ( `pid` int NOT NULL AUTO_INCREMENT, PRIMARY KEY (`pid`) ) ENGINE=InnoDB AUTO_INCREMENT=42 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci 1 row in set (0.0008 sec) MySQL localhost test 2025-08-26 11:20:47 SQL SELECT AUTO_INCREMENT FROM information_schema.TABLES WHERE TABLE_SCHEMA='test' AND TABLE_NAME='data_test'; +----------------+ | AUTO_INCREMENT | +----------------+ | 42 | +----------------+ 1 row in set (0.0016 sec)
[26 Aug 9:29]
Jonathan Haas
@Frederic Descamps I suspect the issue doen't happen in interactive environment due to caching/timing issues or something like that. The docker test project I linked prints ``` mysqladmin: [Warning] Using a password on the command line interface can be insecure. Waiting for user setup etc... The auto increment value is: mysql: [Warning] Using a password on the command line interface can be insecure. 41 Shutting down... ``` and I don't see it running anything else than these commands.
[26 Aug 9:32]
Frederic Descamps
For having a cache somewhere, it would have meant that the value would have been 41 at a moment, which is not the case in this scenario. What is the value of information_schema_stats_expiry ?
[26 Aug 9:36]
Tsubasa Tanaka
Hello from MySQL User group. Did you try information_schema_stats_expiry=0? https://dev.mysql.com/doc/refman/8.0/en/server-system-variables.html#sysvar_information_sc...
[26 Aug 9:42]
Jonathan Haas
> Did you try information_schema_stats_expiry=0? Doesn't change anything. Neither does setting a large value explicitly.