I'm running a query on the slow_log:
SELECT start_time FROM mysql.slow_log WHERE start_time < TIMESTAMP '2016-01-31 00:00:00'
Without a WHERE clause (using a LIMIT), the selects are fast.
However the LIMIT gives me the oldest logs, ORDER BY has the same problem for me.
Is this a MySQL thing, or does it have to do with the fact I'm running a Google Cloud SQL database?