method
extract_attribute
v6.1.3.1 -
Show latest stable
- Class:
ActiveRecord::Relation::WhereClause
extract_attribute(node)private
No documentation available.
# File activerecord/lib/active_record/relation/where_clause.rb, line 128
def extract_attribute(node)
attr_node = nil
Arel.fetch_attribute(node) do |attr|
return if attr_node&.!= attr # all attr nodes should be the same
attr_node = attr
end
attr_node
end