def on_query(env)
if SqlPatches.should_measure?
not_indexed = env[:criteria] && env[:criteria].where_present? &&
!env[:criteria].where_indexed? &&
!env[:criteria].model.try(:perf_warnings_disabled)
query = ""
query << "[#{env[:options][:db]}] " if env[:options][:db]
query << "NOT USING INDEX: " if not_indexed
query << env[:query].inspect.gsub(/\n/, '').gsub(/ +/, ' ') + " "
if env[:exception]
query << "exception: #{env[:exception].class} #{env[:exception].message.split("\n").first} "
end
::Rack::MiniProfiler.record_sql query.strip, env[:duration] * 1000.0
end
end