On 05/15/2013 09:06 PM, Michael Widenius wrote:
Hi!
"Gordan" == Gordan Bobic <gordan@xxxxxxxxxx> writes:
Gordan> How difficult would be be to implement working
Gordan> auto-increment functionality on the BlackHole engine?
Gordan> This would be really useful for what I'm trying to do at
Gordan> the moment. Since it is not available and there are no
Gordan> sequences in MariaDB and MySQL, I have to resort to a
Gordan> hack such as a single-int-field table doing the
Gordan> auto-increment, and an insert trigger on the blackhole
Gordan> table to insert a null into the auto-increment
Gordan> tracking table, get LAST_INSERT_ID() to set the
Gordan> value in the auto-increment table, and then delete
Gordan> the record.
What problem is that you wanted to solve?
Normally blackhole is used just for creating a slave of a slave that
doesn't have to hold any data (only the logs).
The problem is a huge volume logging application that needs to have
uniquely enumerated records for auditing purposes.