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

              
                    






                                               


                               


                                         
         


       
module Arel
  module Nodes
    class SelectCore
      attr_reader :froms, :projections, :wheres

      def initialize
        @froms       = []
        @projections = []
        @wheres      = []
      end

      def initialize_copy other
        super
        @froms = @froms.clone
        @projections = @projections.clone
        @wheres = @wheres.clone
      end
    end
  end
end