What happens when MySQL auto increment field hit the maximum integer value that the data type can contain/handle ?
My search around the net yield the following :
"The behavior of the auto-increment mechanism is not defined … if the value becomes bigger than the maximum integer that can be stored in the specified integer type."
http://dev.mysql.com/doc/refman/5.0/...nt-column.html
"The behaviour of auto-increment is not defined … if the value becomes bigger than the maximum integer that can be stored in the specified integer type."
http://sunsite.mff.cuni.cz/MIRRORS/f...nt_column.html (documents MySQL up to Version 4.1.0-alpha)
If there is no proper defined elegant behaviour when auto increment hits max. I think it will be hard for anyone to make use of it as it is not reliable.
Can anyone give me a definite answer or point me to a definite answer ?
Thanks.