aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/primitives/value.rb
blob: 9c6e518a9576431c3f945fd98cf9db78b88e2bb5 (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
28
29
30
31
32
module Arel
  class Value
    attributes :value, :relation
    deriving :initialize, :==
    delegate :inclusion_predicate_sql, :equality_predicate_sql, :to => :value


    def to_sql(formatter = Sql::WhereCondition.new(relation))
      if value =~ /^\(.*\)$/
        value
      else
        formatter.value value
      end
    end

    def format(object)
      object.to_sql(Sql::Value.new(relation))
    end

    def bind(relation)
      Value.new(value, relation)
    end

    def aggregation?
      false
    end

    def to_attribute
      value
    end
  end
end