We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please answer these questions before submitting your issue. Thanks!
tidb>create table t(id int auto_increment primary key, c int); Query OK, 0 rows affected (0.11 sec) tidb>insert into t values(1,1); Query OK, 1 row affected (0.10 sec) tidb>insert into t values(10000,1); Query OK, 1 row affected (0.01 sec) tidb>select * from t; +-------+------+ | id | c | +-------+------+ | 1 | 1 | | 10000 | 1 | +-------+------+ 3 rows in set (0.00 sec) select auto_increment from information_schema.tables where table_name = 't';
+----------------+ | auto_increment | +----------------+ | 30002 | +----------------+ 1 row in set (0.00 sec)
+----------------+ | auto_increment | +----------------+ | 0 | +----------------+ 1 row in set (0.00 sec)
The text was updated successfully, but these errors were encountered:
infoschema: fix pingcap#6973
a2095a9
zimulala
Successfully merging a pull request may close this issue.
Please answer these questions before submitting your issue. Thanks!
If possible, provide a recipe for reproducing the error.
The text was updated successfully, but these errors were encountered: