> How to obtain auto_increment value from mysql temporary table?

How to obtain auto_increment value from mysql temporary table?

Posted at: 2014-12-18 
I use this to obtain from regular table, but it doesn't work for temporary table

SELECT AUTO_INCREMENT

FROM information_schema.tables

WHERE table_name = 'table_name'

AND table_schema = DATABASE( ) ;