mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
25 lines
584 B
Ruby
25 lines
584 B
Ruby
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
|