blob: bc658271c3f1bd393645bcc9394807e5c80b3fc6 (
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
57
|
module ActiveRelation
module Sql
module Quoting
def connection
ActiveRecord::Base.connection
end
delegate :quote_table_name, :quote_column_name, :quote, :to => :connection
end
class Strategy
include Quoting
end
class Projection < Strategy
def attribute(relation_name, attribute_name, aliaz)
"#{quote_table_name(relation_name)}.#{quote_column_name(attribute_name)}" + (aliaz ? " AS #{quote(aliaz.to_s)}" : "")
end
def select(select_sql, aliaz)
"(#{select_sql}) AS #{quote_column_name(aliaz)}"
end
end
class Predicate < Strategy
def attribute(relation_name, attribute_name, aliaz)
"#{quote_table_name(relation_name)}.#{quote_column_name(attribute_name)}"
end
def scalar(scalar)
scalar
end
def select(select_sql, aliaz)
"(#{select_sql})"
end
end
class Select < Strategy
def select(select_sql, aliaz)
select_sql
end
end
class Aggregation < Strategy
def select(select_sql, aliaz)
"(#{select_sql}) AS #{quote_table_name(aliaz)}"
end
end
class Scalar < Strategy
def scalar(scalar)
quote(scalar)
end
end
end
end
|