blob: e2293f68a2d840ff55a74d72faf09b21418b907c (
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
|
module Arel
module Nodes
class SelectCore < Arel::Nodes::Node
attr_accessor :from, :projections, :wheres, :groups
attr_accessor :having
alias :froms= :from=
alias :froms :from
def initialize
@from = nil
@projections = []
@wheres = []
@groups = []
@having = nil
end
def initialize_copy other
super
@from = @from.clone if @from
@projections = @projections.clone
@wheres = @wheres.clone
@group = @groups.clone
@having = @having.clone if @having
end
end
end
end
|