1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/select_manager.rb

36 lines
566 B
Ruby
Raw Normal View History

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
2010-08-16 20:44:48 -04:00
def wheres
Compatibility::Wheres.new @engine, @ctx.wheres
end
def take limit
@head.limit = limit
self
end
end
end