I am writing an app that uses MySQL in a "non-standard" way, so to say. It relies heavily on dynamically created/dropped tables.
So far it's functioning properly. The specs don't make me happy, though. Whenever I run them, I get tons of activerecord's ddl log messages. See for yourself:
SqlDailyEvents
-- create_table("11_daily_events_20120428")
-> 0.0032s
should create and drop a table
-- create_table("11_daily_events_20120428")
-> 0.0030s
should not create the same table twice
should not drop the same table twice
That's --format d. With --format p it looks even worse!
How do I turn it off? This log seems not to be affected by ActiveRecord::Base.logger (which I tried setting to nil).