aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/select_core.rb
blob: bd85dad24a1e0ff83f0114c0568fa2931e6f7997 (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       = []
        @projections = []
        @wheres      = []
        @groups      = []
        @having      = nil
      end

      def initialize_copy other
        super
        @froms       = @froms.clone
        @projections = @projections.clone
        @wheres      = @wheres.clone
        @group       = @groups.clone
        @having      = @having.clone if @having
      end
    end
  end
end