aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_relation/primitives/value.rb
blob: 9042aea067b75f81718ac708df7609620461db18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module ActiveRelation
  class Value
    attr_reader :value, :relation
    
    delegate :inclusion_predicate_sql, :equality_predicate_sql, :to => :value
    
    def initialize(value, relation)
      @value, @relation = value, relation
    end
    
    def to_sql(formatter = Sql::WhereCondition.new(relation.engine))
      formatter.value value
    end

    def format(object)
      object.to_sql(Sql::Value.new(relation.engine))
    end
    
    def ==(other)
      value == other.value
    end
    
    def bind(relation)
      Value.new(value, relation)
    end
  end
end