I have an InnoDB table in which i frequently insert and delete rows.
I noticed that after I execute a delete statement on the last few rows and run optimize table the auto-increment drops back to max(id)+1
Consider the following sequence of events
Table: requests
Auto Increment is: 150, INSERT ROW (id 150)
Auto Increment is: 151, INSERT ROW (id 151)
Auto Increment is: 152, INSERT ROW (id 152)
Auto Increment is: 154
DELETE from requests where id in (151,152)
OPTIMIZE TABLE requests
Auto increment is: 151.
I want to find a way to avoid this scenario.
Any help is appreciated.
Edit: I have just tried and the same thing happens when I restart the mysql service instead of optimising the table