aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/select_manager.rb
blob: 23d85e338612f998ce8aa799b2b470fcdcb72249 (plain) (tree)
1
2
3
4

                                         

                      


























                                          
module Arel
  class SelectManager < Arel::TreeManager
    include Arel::Crud

    def initialize engine
      super
      @head   = Nodes::SelectStatement.new
      @ctx    = @head.cores.last
    end

    def from table
      @ctx.froms << table
      self
    end

    def project projection
      @ctx.projections << projection
      self
    end

    def where expr
      @ctx.wheres << expr
      self
    end

    def take limit
      @head.limit = limit
      self
    end
  end
end