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