aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/select_statement.rb
blob: 122f6275fe07aa481fc990fe1497dcc86cb49803 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Arel
  module Nodes
    class SelectStatement
      attr_reader :cores
      attr_accessor :limit

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