aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/select_core.rb
blob: bd1930364d0d5f1ce42c73f0aa08e33cb40cb5df (plain) (tree)
1
2
3
4
5
6
7
8
9
10

              
                                        

                                                  
 
                    
                                         

                         
                         
                          
         
 










                            

                               
                                               
                                         

                                    
                                               
         


       
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