Class/Module Index [+]

Quicksearch

Arel::Nodes::SelectCore

Attributes

froms[RW]
groups[RW]
having[RW]
projections[RW]
top[RW]
wheres[RW]

Public Class Methods

new() click to toggle source
# File lib/arel/nodes/select_core.rb, line 7
def initialize
  @top         = nil
  @froms       = nil
  @projections = []
  @wheres      = []
  @groups      = []
  @having      = nil
end

Public Instance Methods

initialize_copy(other) click to toggle source
# File lib/arel/nodes/select_core.rb, line 16
def initialize_copy other
  super
  @froms       = @froms.clone if @froms
  @projections = @projections.clone
  @wheres      = @wheres.clone
  @group       = @groups.clone
  @having      = @having.clone if @having
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.