Flowdock
select_for_count() 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/relation/calculations.rb, line 359
    def select_for_count
      if select_values.present?
        return select_values.first if select_values.one?
        select_values.join(", ")
      else
        :all
      end
    end
Register or log in to add new notes.