instance method
arel_columns
Ruby on Rails 8.0.4
Since v4.1.16 Last seen in v8.0.4Signature
arel_columns(columns)
No documentation comment.
Parameters
-
columnsreq
Source
# File activerecord/lib/active_record/relation/query_methods.rb, line 1662
def arel_columns(columns)
columns.flat_map do |field|
case field
when Symbol, String
arel_column(field)
when Proc
field.call
when Hash
arel_columns_from_hash(field)
else
field
end
end
end
Defined in activerecord/lib/active_record/relation/query_methods.rb line 1662
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in ActiveRecord::QueryMethods