select_core.rb 224 字节
Newer Older
A
Aaron Patterson 已提交
1 2
module Arel
  module Nodes
A
Aaron Patterson 已提交
3
    class SelectCore
A
Aaron Patterson 已提交
4 5 6 7 8 9 10 11 12 13
      attr_reader :froms, :projections, :wheres

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