Class Index [+]

Quicksearch

Arel::Nodes::SelectStatement

Attributes

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

Public Class Methods

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

Public Instance Methods

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

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.