Can anyone suggest me the workaround for the following bug in mysql.
http://bugs.mysql.com/bug.php?id=61058
This bug was reported long ago (2007) with mysql 5.0, but i am still facing same issue with mysql 5.6. I have followed this post which first gave some insight for this problem.
Mysql auto increment jumps when insert-select
Followed the post as some one suggested preferably setting
ALTER TABLE `test` AUTO_INCREMENT = 1;
which will not work in my case where i have a stored procedure which will run in background as an event for a specified time.
Can anyone please suggest me for a workaround....??
Thanks in advance