If you use it as an identifier generator, then (in addition to modifying the table) you will need to insert something to get the next value.
The easiest way to do this without inserting any data is to do INSERTand then call LAST_INSERT_IDand then release ROLLBACK. This will cause the insert to roll back, but the next identifier will still be incremented.