method

extract_attribute

Importance_0
v8.1.1 - Show latest stable - 0 notes - Class: WhereClause
extract_attribute(node) 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/where_clause.rb, line 136
        def extract_attribute(node)
          attr_node = nil

          valid_attrs = Arel.fetch_attribute(node) do |attr|
            !attr_node || attr_node == attr # all attr nodes should be the same
          ensure
            attr_node = attr
          end
          return unless valid_attrs # all nested nodes should yield an attribute

          attr_node
        end
Register or log in to add new notes.