Flowdock
method

arel_columns

Importance_0
v4.2.1 - Show latest stable - 0 notes - Class: ActiveRecord::QueryMethods
arel_columns(columns) 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/query_methods.rb, line 1066
    def arel_columns(columns)
      if from_value
        columns
      else
        columns.map do |field|
          if (Symbol === field || String === field) && columns_hash.key?(field.to_s)
            arel_table[field]
          else
            field
          end
        end
      end
    end
Register or log in to add new notes.