class method
self.add_group!
Ruby on Rails 2.3.18
Since v2.2.3 Last seen in v2.3.18 PrivateAvailable in: v2.2.3 v2.3.18
Signature
self.add_group!(sql, group, having, scope = :auto)
No documentation comment.
Parameters
-
sqlreq -
groupreq -
havingreq -
scopeopt = :auto
Source
# File activerecord/lib/active_record/base.rb, line 1781
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
Defined in activerecord/lib/active_record/base.rb line 1781
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::Base