aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/nodes/select_core.rb
blob: 39145de69733b2a2d76b4465402fb9afb3663e0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Arel
  module Nodes
    class SelectCore
      attr_reader :froms, :projections, :wheres

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