Flowdock
method

extract_node_value

Importance_0
v6.1.3.1 - Show latest stable - 0 notes - Class: WhereClause
extract_node_value(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 226
        def extract_node_value(node)
          case node
          when Array
            node.map { |v| extract_node_value(v) }
          when Arel::Nodes::BindParam, Arel::Nodes::Casted, Arel::Nodes::Quoted
            node.value_before_type_cast
          end
        end
Register or log in to add new notes.