method

build_bind_attribute

build_bind_attribute(column_name, value)
public

No documentation available.

# File activerecord/lib/active_record/relation/predicate_builder.rb, line 71
    def build_bind_attribute(column_name, value)
      attr = Relation::QueryAttribute.new(column_name, value, table.type(column_name))
      Arel::Nodes::BindParam.new(attr)
    end