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

              
                                             
                        
                                                   

                                             


                       
                     
                     
         


                               

                                             
         


       
module Arel
  module Nodes
    class SelectStatement < Arel::Nodes::Node
      attr_reader :cores
      attr_accessor :limit, :orders, :lock, :offset

      def initialize cores = [SelectCore.new]
        @cores  = cores
        @orders = []
        @limit  = nil
        @lock   = nil
        @offset = nil
      end

      def initialize_copy other
        super
        @cores  = @cores.map { |x| x.clone }
        @orders = @orders.map { |x| x.clone }
      end
    end
  end
end