alter table... auto_increment=1 does not work as expected

Description

Even if upstream is verified as a documentation bug, this does not seem to be the case for me. 

Description:
alter table... auto_increment=1 does not work as expected in case the auto_increment column is modified after table creation.

When the column is modified to auto_increment, the alter table... auto_increment=1 command does not reset the auto_increment value to the current maximum AUTO_INCREMENT column value plus one.
How to repeat:
Create a table without auto_increment

mysql> CREATE TABLE `test` (
    -> `id` int NOT NULL,
    -> PRIMARY KEY (`id`)
    -> ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci ROW_FORMAT=DYNAMIC;
Query OK, 0 rows affected (0.01 sec)

Insert a record to this table

mysql> insert into test set id=3;
Query OK, 1 row affected (0.00 sec)

Modified the column to make it auto_incrment with ALTER

mysql> alter table test modify id int not null auto_increment;
Query OK, 1 row affected (0.02 sec)
Records: 1  Duplicates: 0  Warnings: 0

Then reset the auto_incrment with ALTER TABLE..AUTO_INCREMENT=1

mysql> alter table test modify id int not null auto_increment;
Query OK, 1 row affected (0.02 sec)
Records: 1  Duplicates: 0  Warnings: 0

Then insert data into this table and duplicate entry error occur

mysql>  insert into test set id=null;
Query OK, 1 row affected (0.01 sec)

mysql>  insert into test set id=null;
Query OK, 1 row affected (0.01 sec)

mysql> select * from test;


id


 1

 2

 3


3 rows in set (0.00 sec)

mysql>  insert into test set id=null;
ERROR 1062 (23000): Duplicate entry '3' for key 'test.PRIMARY'

Environment

None

AFFECTED CS IDs

CS0032595

Activity

Yura Sorokin February 16, 2023 at 4:34 PM

Dmitry Lenev January 11, 2023 at 11:58 AM

I just have checked and indeed 5.7.40 seems to be not affected by this problem.

Marcelo Altmann January 10, 2023 at 12:44 PM

Can I ask you to test this behaviour on 5.7 and 8.0 (its not clear in the ticket if this is affecting all versions).
8.0 has introduced the concept of dynamic metadata to fix issues with AI and restarts. I think that 5.7 the counter will start to count from 3+1 (I might be wrong).

Done

Details

Assignee

Reporter

Needs QA

Yes

Priority

Smart Checklist

Created January 9, 2023 at 11:21 PM
Updated March 6, 2024 at 9:51 AM
Resolved January 24, 2023 at 1:13 PM

Flag notifications