Class/Module Index [+]

Quicksearch

Arel::Nodes::SelectStatement

Attributes

cores[R]
limit[RW]
lock[RW]
offset[RW]
orders[RW]
with[RW]

Public Class Methods

new(cores = [SelectCore.new]) click to toggle source
# File lib/arel/nodes/select_statement.rb, line 7
def initialize cores = [SelectCore.new]
  #puts caller
  @cores          = cores
  @orders         = []
  @limit          = nil
  @lock           = nil
  @offset         = nil
  @with           = nil
end

Public Instance Methods

initialize_copy(other) click to toggle source
# File lib/arel/nodes/select_statement.rb, line 17
def initialize_copy other
  super
  @cores  = @cores.map { |x| x.clone }
  @orders = @orders.map { |x| x.clone }
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.