1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/nodes/select_core.rb
2010-12-14 09:43:19 -08:00

36 lines
784 B
Ruby

module Arel
module Nodes
class SelectCore < Arel::Nodes::Node
attr_accessor :projections, :wheres, :groups
attr_accessor :having, :source
def initialize
@source = JoinSource.new nil
@projections = []
@wheres = []
@groups = []
@having = nil
end
def from
@source.left
end
def from= value
@source.left = value
end
alias :froms= :from=
alias :froms :from
def initialize_copy other
super
@source = @source.clone if @source
@projections = @projections.clone
@wheres = @wheres.clone
@group = @groups.clone
@having = @having.clone if @having
end
end
end
end