Skip to content
New issue

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

AUTO_INCREMENT: update keyword auto_increment to CAPS #1746

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dev/how-to/get-started/data-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ We achieve that by having set `auto-increment-increment=5` and `auto-increment-o
do
mysql -h 127.0.0.1 -P "$((3306+i))" -u root <<EoSQL
create database dmtest1;
create table dmtest1.t1 (id bigint unsigned not null auto_increment primary key, c char(32), port int);
create table dmtest1.t1 (id bigint unsigned not null AUTO_INCREMENT primary key, c char(32), port int);
EoSQL
done
```
Expand Down
20 changes: 10 additions & 10 deletions dev/how-to/get-started/import-example-database.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@ CREATE DATABASE bikeshare;
USE bikeshare;

CREATE TABLE trips (
trip_id bigint NOT NULL PRIMARY KEY auto_increment,
duration integer not null,
start_date datetime,
end_date datetime,
start_station_number integer,
start_station varchar(255),
end_station_number integer,
end_station varchar(255),
bike_number varchar(255),
member_type varchar(255)
trip_id bigint NOT NULL PRIMARY KEY AUTO_INCREMENT,
duration INTEGER NOT NULL,
start_date DATETIME,
end_date DATETIME,
start_station_number INTEGER,
start_station VARCHAR(255),
end_station_number INTEGER,
end_station VARCHAR(255),
bike_number VARCHAR(255),
member_type VARCHAR(255)
);
```

Expand Down
34 changes: 17 additions & 17 deletions dev/how-to/get-started/tidb-binlog.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ MariaDB [(none)]> show databases;
Here we can already see the `tidb_binlog` database, which contains the `checkpoint` table used by `drainer` to record up to what point binary logs from the TiDB cluster have been applied.

```sql
MariaDB [tidb_binlog]> use tidb_binlog;
MariaDB [tidb_binlog]> USE tidb_binlog;
Database changed
MariaDB [tidb_binlog]> select * from checkpoint;
MariaDB [tidb_binlog]> SELECT * FROM checkpoint;
+---------------------+---------------------------------------------+
| clusterID | checkPoint |
+---------------------+---------------------------------------------+
Expand All @@ -252,29 +252,29 @@ mysql -h 127.0.0.1 -P 4000 --prompt='TiDB [\d]> ' -u root
```

```sql
create database tidbtest;
use tidbtest;
create table t1 (id int unsigned not null auto_increment primary key);
insert into t1 () values (),(),(),(),();
select * from t1;
CREATE DATABASE tidbtest;
USE tidbtest;
CREATE TABLE t1 (id INT unsigned NOT NULL AUTO_INCREMENT PRIMARY KEY);
INSERT INTO t1 () VALUES (),(),(),(),();
SELECT * FROM t1;
```

Expected output:

```
TiDB [(none)]> create database tidbtest;
TiDB [(none)]> CREATE DATABASE tidbtest;
Query OK, 0 rows affected (0.12 sec)

TiDB [(none)]> use tidbtest;
TiDB [(none)]> USE tidbtest;
Database changed
TiDB [tidbtest]> create table t1 (id int unsigned not null auto_increment primary key);
TiDB [tidbtest]> create TABLE t1 (id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY);
Query OK, 0 rows affected (0.11 sec)

TiDB [tidbtest]> insert into t1 () values (),(),(),(),();
TiDB [tidbtest]> INSERT INTO t1 () VALUES (),(),(),(),();
Query OK, 5 rows affected (0.01 sec)
Records: 5 Duplicates: 0 Warnings: 0

TiDB [tidbtest]> select * from t1;
TiDB [tidbtest]> SELECT * FROM t1;
+----+
| id |
+----+
Expand All @@ -290,9 +290,9 @@ TiDB [tidbtest]> select * from t1;
Switching back to the MariaDB client, we should find the new database, new table, and the newly inserted rows:

```sql
use tidbtest;
show tables;
select * from t1;
USE tidbtest;
SHOW TABLES;
SELECT * FROM t1;
```

Expected output:
Expand All @@ -303,15 +303,15 @@ Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
MariaDB [tidbtest]> show tables;
MariaDB [tidbtest]> SHOW TABLES;
+--------------------+
| Tables_in_tidbtest |
+--------------------+
| t1 |
+--------------------+
1 row in set (0.00 sec)

MariaDB [tidbtest]> select * from t1;
MariaDB [tidbtest]> SELECT * FROM t1;
+----+
| id |
+----+
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ set tidb_query_log_max_len = 20

- Scope: SESSION
- Default value: 0
- This variable is used to set whether the `auto_increment` property of a column is allowed to be removed by executing `ALTER TABLE MODIFY` or `ALTER TABLE CHANGE` statements. It is not allowed by default.
- This variable is used to set whether the `AUTO_INCREMENT` property of a column is allowed to be removed by executing `ALTER TABLE MODIFY` or `ALTER TABLE CHANGE` statements. It is not allowed by default.

### tidb_enable_stmt_summary <span class="version-mark">New in v3.0.4</span>

Expand Down
6 changes: 3 additions & 3 deletions dev/reference/mysql-compatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ In TiDB, auto-increment columns are only guaranteed to be incremental and unique
Assume that you have a table with the auto-increment ID:

```sql
create table t(id int unique key auto_increment, c int);
create table t(id int unique key AUTO_INCREMENT, c int);
```

The principle of the auto-increment ID in TiDB is that each tidb-server instance caches a section of ID values (currently 30000 IDs are cached) for allocation and fetches the next section after this section is used up.
Expand All @@ -67,7 +67,7 @@ The operations are executed as follows:
1. The client issues the `insert into t values (1, 1)` statement to Instance B which sets the `id` to 1 and the statement is executed successfully.
2. The client issues the `insert into t (c) (1)` statement to Instance A. This statement does not specify the value of `id`, so Instance A allocates the value. Currently, Instances A caches the auto-increment ID of [1, 30000], so it allocates the `id` value to 1 and adds 1 to the local counter. However, at this time the data with the `id` of 1 already exists in the cluster, therefore it reports `Duplicated Error`.

Also, starting from TiDB 2.1.18 and 3.0.4, TiDB supports using the system variable `tidb_allow_remove_auto_inc` to control whether the `auto_increment` property of a column is allowed to be removed by executing `ALTER TABLE MODIFY` or `ALTER TABLE CHANGE` statements. It is not allowed by default.
Also, starting from TiDB 2.1.18 and 3.0.4, TiDB supports using the system variable `tidb_allow_remove_auto_inc` to control whether the `AUTO_INCREMENT` property of a column is allowed to be removed by executing `ALTER TABLE MODIFY` or `ALTER TABLE CHANGE` statements. It is not allowed by default.

### Performance schema

Expand All @@ -92,7 +92,7 @@ In TiDB DDL does not block reads or writes to tables while in operation. However
- Adding an index on a generated column via `ALTER TABLE` is not supported.
+ Add Column:
- Does not support creating multiple columns at the same time.
- Does not support setting a column as the `PRIMARY KEY`, or creating a unique index, or specifying `auto_increment` while adding it.
- Does not support setting a column as the `PRIMARY KEY`, or creating a unique index, or specifying `AUTO_INCREMENT` while adding it.
+ Drop Column: Does not support dropping the `PRIMARY KEY` column or index column.
+ Change/Modify Column:
- Does not support lossy changes, such as from `BIGINT` to `INTEGER` or `VARCHAR(255)` to `VARCHAR(10)`.
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/character-set.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ mysql> SHOW COLLATION WHERE Charset = 'utf8mb4';
For compatibility with MySQL, TiDB will allow other collation names to be used:

```sql
mysql> CREATE TABLE t1 (a INT NOT NULL PRIMARY KEY auto_increment, b VARCHAR(10)) COLLATE utf8mb4_unicode_520_ci;
mysql> CREATE TABLE t1 (a INT NOT NULL PRIMARY KEY AUTO_INCREMENT, b VARCHAR(10)) COLLATE utf8mb4_unicode_520_ci;
Query OK, 0 rows affected (0.00 sec)

mysql> INSERT INTO t1 VALUES (1, 'a');
Expand Down
12 changes: 6 additions & 6 deletions dev/reference/sql/constraints.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ TiDB currently only supports `FOREIGN KEY` creation in DDL commands. For example

```sql
CREATE TABLE users (
id INT NOT NULL PRIMARY KEY auto_increment,
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
doc JSON
);

CREATE TABLE orders (
id INT NOT NULL PRIMARY KEY auto_increment,
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
user_id INT NOT NULL,
doc JSON,
FOREIGN KEY fk_user_id (user_id) REFERENCES users(id)
Expand Down Expand Up @@ -68,7 +68,7 @@ TiDB supports the `NOT NULL` constraint with identical semantics to MySQL. For e

```sql
CREATE TABLE users (
id INT NOT NULL PRIMARY KEY auto_increment,
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
age INT NOT NULL,
last_login TIMESTAMP
);
Expand All @@ -83,7 +83,7 @@ mysql> INSERT INTO users (id,age,last_login) VALUES (NULL,123,NULL);
Query OK, 1 row affected (0.03 sec)
```

* The first `INSERT` statement succeeded because `NULL` is permitted as a special value for columns defined as `auto_increment`. This results in the next auto-value being allocated.
* The first `INSERT` statement succeeded because `NULL` is permitted as a special value for columns defined as `AUTO_INCREMENT`. This results in the next auto-value being allocated.

* The second `INSERT` statement fails because the `age` column was defined as `NOT NULL`.

Expand Down Expand Up @@ -142,7 +142,7 @@ In TiDB, `UNIQUE` constraints are checked lazily by default. By batching checks
```sql
DROP TABLE IF EXISTS users;
CREATE TABLE users (
id INT NOT NULL PRIMARY KEY auto_increment,
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
username VARCHAR(60) NOT NULL,
UNIQUE KEY (username)
);
Expand Down Expand Up @@ -170,7 +170,7 @@ By changing `tidb_constraint_check_in_place` to `TRUE`, `UNIQUE` constraints wil
```sql
DROP TABLE IF EXISTS users;
CREATE TABLE users (
id INT NOT NULL PRIMARY KEY auto_increment,
id INT NOT NULL PRIMARY KEY AUTO_INCREMENT,
username VARCHAR(60) NOT NULL,
UNIQUE KEY (username)
);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/add-column.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The `ALTER TABLE.. ADD COLUMN` statement adds a column to an existing table. Thi
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT);
Query OK, 0 rows affected (0.11 sec)

mysql> INSERT INTO t1 VALUES (NULL);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/add-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The `ALTER TABLE.. ADD INDEX` statement adds an index to an existing table. This
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.11 sec)

mysql> INSERT INTO t1 (c1) VALUES (1),(2),(3),(4),(5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/alter-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ This statement modifies an existing table to conform to a new table structure. T
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.11 sec)

mysql> INSERT INTO t1 (c1) VALUES (1),(2),(3),(4),(5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/analyze-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ TiDB will also automatically update its statistics over time as it discovers tha
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.11 sec)

mysql> INSERT INTO t1 (c1) VALUES (1),(2),(3),(4),(5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/change-column.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ The `ALTER TABLE.. CHANGE COLUMN` statement changes a column on an existing tabl
## Examples

```sql
mysql> CREATE TABLE t1 (id int not null primary key auto_increment, col1 INT);
mysql> CREATE TABLE t1 (id int not null primary key AUTO_INCREMENT, col1 INT);
Query OK, 0 rows affected (0.11 sec)

mysql> INSERT INTO t1 (col1) VALUES (1),(2),(3),(4),(5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/create-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ This statement adds a new index to an existing table. It is an alternative synta
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.10 sec)

mysql> INSERT INTO t1 (c1) VALUES (1),(2),(3),(4),(5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/create-view.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ The `CREATE VIEW` statement saves a `SELECT` statement as a queryable object, si
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.11 sec)

mysql> INSERT INTO t1 (c1) VALUES (1),(2),(3),(4),(5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/delete.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ The `DELETE` statement removes rows from a specified table.
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.11 sec)

mysql> INSERT INTO t1 (c1) VALUES (1),(2),(3),(4),(5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/drop-column.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This statement drops a column from a specified table. `DROP COLUMN` is online in
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, col1 INT NOT NULL, col2 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, col1 INT NOT NULL, col2 INT NOT NULL);
Query OK, 0 rows affected (0.12 sec)

mysql> INSERT INTO t1 (col1,col2) VALUES (1,1),(2,2),(3,3),(4,4),(5,5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/drop-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ This statement removes an index from a specified table, marking space as free in
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.10 sec)

mysql> INSERT INTO t1 (c1) VALUES (1),(2),(3),(4),(5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/drop-view.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This statement drops an view object from the currently selected database. It doe
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.11 sec)

mysql> INSERT INTO t1 (c1) VALUES (1),(2),(3),(4),(5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/explain-analyze.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The `EXPLAIN ANALYZE` statement works similar to `EXPLAIN`, with the major diffe
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.12 sec)

mysql> INSERT INTO t1 (c1) VALUES (1), (2), (3);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/explain.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ mysql> EXPLAIN SELECT 1;
+-------------------+-------+------+---------------+
2 rows in set (0.00 sec)

mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.10 sec)

mysql> INSERT INTO t1 (c1) VALUES (1), (2), (3);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/load-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ The `LOAD DATA` statement batch loads data into a TiDB table.

```sql
mysql> CREATE TABLE trips (
-> trip_id bigint NOT NULL PRIMARY KEY auto_increment,
-> trip_id bigint NOT NULL PRIMARY KEY AUTO_INCREMENT,
-> duration integer not null,
-> start_date datetime,
-> end_date datetime,
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/modify-column.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The `ALTER TABLE.. MODIFY COLUMN` statement modifies a column on an existing tab
## Examples

```sql
mysql> CREATE TABLE t1 (id int not null primary key auto_increment, col1 INT);
mysql> CREATE TABLE t1 (id int not null primary key AUTO_INCREMENT, col1 INT);
Query OK, 0 rows affected (0.11 sec)

mysql> INSERT INTO t1 (col1) VALUES (1),(2),(3),(4),(5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/rename-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ The statement `ALTER TABLE .. RENAME INDEX` renames an existing index to a new n
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL, INDEX col1 (c1));
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL, INDEX col1 (c1));
Query OK, 0 rows affected (0.11 sec)

mysql> SHOW CREATE TABLE t1\G
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/replace.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The `REPLACE` statement is semantically a combined `DELETE`+`INSERT` statement.
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.12 sec)

mysql> INSERT INTO t1 (c1) VALUES (1), (2), (3);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/select.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ The `SELECT` statement is used to read data from TiDB.
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.11 sec)

mysql> INSERT INTO t1 (c1) VALUES (1),(2),(3),(4),(5);
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/show-indexes.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The statement `SHOW INDEXES [FROM|IN]` lists the indexes on a specified table.
## Examples

```sql
mysql> CREATE TABLE t1 (id int not null primary key auto_increment, col1 INT, INDEX(col1));
mysql> CREATE TABLE t1 (id int not null primary key AUTO_INCREMENT, col1 INT, INDEX(col1));
Query OK, 0 rows affected (0.12 sec)

mysql> SHOW INDEXES FROM t1;
Expand Down
2 changes: 1 addition & 1 deletion dev/reference/sql/statements/show-table-status.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This statement shows various statistics about tables in TiDB. If the statistics
## Examples

```sql
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY auto_increment, c1 INT NOT NULL);
mysql> CREATE TABLE t1 (id INT NOT NULL PRIMARY KEY AUTO_INCREMENT, c1 INT NOT NULL);
Query OK, 0 rows affected (0.11 sec)

mysql> INSERT INTO t1 (c1) VALUES (1),(2),(3),(4),(5);
Expand Down
Loading