method
add_group!
add_group!(sql, group, having, scope = :auto)
private
Hide source
# File activerecord/lib/active_record/base.rb, line 1747 def add_group!(sql, group, having, scope = :auto) if group sql << " GROUP BY #{group}" sql << " HAVING #{sanitize_sql_for_conditions(having)}" if having else scope = scope(:find) if :auto == scope if scope && (scoped_group = scope[:group]) sql << " GROUP BY #{scoped_group}" sql << " HAVING #{sanitize_sql_for_conditions(scope[:having])}" if scope[:having] end end end

