aggregate_column(column_name) protected

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/relation/calculations.rb, line 418
      def aggregate_column(column_name)
        case column_name
        when Arel::Expressions
          column_name
        when :all
          Arel.star
        else
          arel_column(column_name.to_s)
        end
      end
Register or log in to add new notes.