Quote:
Originally Posted by Marco van Herwaarden
Missed that limit.
I would just let it go then. The maximum value for this column is 4294967295, so this will still leave you a lot of values left.
|
For those that care, I didn't go with the leave it alone option because if it happens 3 more times, all of a sudden I am at that limit.
What I did was
take a content-less dump (i.e. a db schema) of vbulletin
grep for postid (which included lastpostid and other similar fields)
determined the offset
ran update table set postfield=postfield-offset where postfield > jumpvalue
alter table post auto_increment = newvalue
It seems to have done the trick.
All steps were fast, except the alter table which needed 10 minutes of re-indexing.