Class/Module Index [+]

Quicksearch

Arel::Nodes::SelectStatement

Attributes

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

Public Instance Methods

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

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]
  @cores  = cores
  @orders = []
  @limit  = nil
  @lock   = nil
  @offset = nil
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.