Skip to content

Commit

Permalink
refine doc
Browse files Browse the repository at this point in the history
  • Loading branch information
tangenta committed Sep 5, 2024
1 parent 2b0cf75 commit 6513876
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions auto-increment.md
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ TiDB 自增 ID 的缓存大小在早期版本中是对用户透明的。从 v3.1
CREATE TABLE t(a int AUTO_INCREMENT key) AUTO_ID_CACHE 100;
Query OK, 0 rows affected (0.02 sec)

INSERT INTO t1 VALUES();
INSERT INTO t VALUES();
Query OK, 1 row affected (0.00 sec)

SELECT * FROM t;
Expand Down Expand Up @@ -315,7 +315,7 @@ SHOW CREATE TABLE t;
INSERT INTO t VALUES();
Query OK, 1 row affected (0.00 sec)

select * from t;
SELECT * FROM t;
+-----+
| a |
+-----+
Expand Down

0 comments on commit 6513876

Please sign in to comment.