aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/primitives/value.rb
blob: 76c82890d0c815239ccf6ae7359d31c975d8ab09 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module Arel
  class Value
    attributes :value, :relation
    deriving :initialize, :==

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

    def aggregation?
      false
    end

    def to_attribute
      value
    end
  end
end