aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/algebra/expression.rb
blob: 183de3c005cfb213dd4f7e955cb8fd6cc334cc62 (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
33
34
35
36
37
38
39
40
41
42
module Arel
  class Expression < Attribute
    attr_reader :attribute
    alias :name :alias

    def initialize(attribute, aliaz = nil, ancestor = nil)
      super(attribute.relation, aliaz, :alias => aliaz, :ancestor => ancestor)
      @attribute = attribute
    end

    def == other
      super && Expression === other && attribute == other.attribute
    end

    def aggregation?
      true
    end

    module Transformations
      def as(aliaz)
        self.class.new(attribute, aliaz, self)
      end

      def bind(new_relation)
        new_relation == relation ? self : self.class.new(attribute.bind(new_relation), @alias, self)
      end

      def to_attribute(relation)
        Attribute.new(relation, @alias, :ancestor => self)
      end
    end
    include Transformations
  end

  class Count    < Expression; end
  class Distinct < Expression; end
  class Sum      < Expression; end
  class Maximum  < Expression; end
  class Minimum  < Expression; end
  class Average  < Expression; end
end