blob: 32cf4f12c974672026a9bdcf06982ad78bc4f0d2 (
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
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 aggregation?
true
end
def to_sql(formatter = Sql::SelectClause.new(relation))
formatter.expression self
end
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
class Count < Expression
def function_sql; 'COUNT' end
end
class Distinct < Expression
def function_sql; 'DISTINCT' end
end
class Sum < Expression
def function_sql; 'SUM' end
end
class Maximum < Expression
def function_sql; 'MAX' end
end
class Minimum < Expression
def function_sql; 'MIN' end
end
class Average < Expression
def function_sql; 'AVG' end
end
end
|