Bug #54165 | InnoDB auto_increment not updated on UPDATE (unlike MyISAM) | ||
---|---|---|---|
Submitted: | 2 Jun 2010 4:58 | Modified: | 9 May 2012 23:37 |
Reporter: | Stewart Smith | Email Updates: | |
Status: | Closed | Impact on me: | |
Category: | MySQL Server: Documentation | Severity: | S3 (Non-critical) |
Version: | 5.1.46 | OS: | Any |
Assigned to: | Paul DuBois | CPU Architecture: | Any |
[2 Jun 2010 4:58]
Stewart Smith
[2 Jun 2010 6:23]
Stewart Smith
Patch (against drizzle, but should be fairly similar) that fixes auto_inc behaviour to be like MyISAM for UPDATE
Attachment: innodb_autoinc_update.patch (text/x-patch), 1.74 KiB.
[2 Jun 2010 10:13]
Sveta Smirnova
Thank you for the report. This is not a bug. See bug #38839 for explanation.
[2 Jun 2010 23:32]
Stewart Smith
At the very least this should be a documentation bug as *nowhere* is it documented. Or MyISAM should be fixed to conform to the documentation.
[3 Jun 2010 5:41]
Sveta Smirnova
Thank you for the feedback. Makes sense. Moving to documentation category.
[9 May 2012 23:37]
John Russell
Added this InnoDB-specific note to the tutorial topic in the doc: For InnoDB tables, be careful if you modify the column containing the auto-increment value in the middle of a sequence of INSERT statements. For example, if you use an UPDATE statement to put a new, larger value in the auto-increment column, a subsequent INSERT could encounter a "Duplicate entry" error. The test whether an auto-increment value is already present occurs if you do a DELETE followed by more INSERT statements, or when you COMMIT the transaction, but not after an UPDATE statement.