module ActiveRecord::QueryLogs
def comment(connection)
Returns an SQL comment +String+ containing the query log tags.
def comment(connection) if cache_query_log_tags self.cached_comment ||= uncached_comment(connection) else uncached_comment(connection) end end