You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
set @@auto_increment_increment = 5;
set @@auto_increment_offset = 10;
create table io (a int key auto_increment);
insert into io values (null),(null),(null);
2. What did you expect to see? (Required)
mysql> select * from io;
+----+
| a |
+----+
| 4 |
| 9 |
| 10 |
+----+
3 rows in set (0.00 sec)
3. What did you see instead (Required)
mysql> select * from io;
+----+
| a |
+----+
| 10 |
| 15 |
| 20 |
+----+
3 rows in set (0.00 sec)
Bug Report
Please answer these questions before submitting your issue. Thanks!
1. Minimal reproduce step (Required)
2. What did you expect to see? (Required)
3. What did you see instead (Required)
4. What is your TiDB version? (Required)
master b9029f1
The text was updated successfully, but these errors were encountered: