Flowdock
method

add_group!

Importance_0
v2.3.8 - Show latest stable - 0 notes - Class: ActiveRecord::Base
add_group!(sql, group, having, scope = :auto) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activerecord/lib/active_record/base.rb, line 1777
        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
Register or log in to add new notes.