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

              
                    
                                                          
                           

                    
                          

                         
                         
                          
         


                               
                                             
                                         

                                    
                                               
         


       
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