method
arel_columns
rails latest stable - Class:
ActiveRecord::QueryMethods
arel_columns(columns)private
No documentation available.
# File activerecord/lib/active_record/relation/query_methods.rb, line 1775
def arel_columns(columns)
columns.flat_map do |field|
case field
when Symbol
arel_column(field.to_s) do |attr_name|
connection.quote_table_name(attr_name)
end
when String
arel_column(field, &:itself)
when Proc
field.call
else
field
end
end
end