Class: Arel::Nodes::NamedWindow

Inherits:
Window show all
Defined in:
lib/arel/nodes/window.rb

Instance Attribute Summary collapse

Attributes inherited from Window

#framing, #orders

Instance Method Summary collapse

Methods inherited from Window

#frame, #order, #range, #rows

Methods included from OrderPredications

#asc, #desc

Methods inherited from Node

#and, #each, #not, #or, #to_sql

Methods included from FactoryMethods

#create_and, #create_false, #create_join, #create_on, #create_string_join, #create_table_alias, #create_true, #grouping, #lower

Constructor Details

#initialize(name) ⇒ NamedWindow

Returns a new instance of NamedWindow.



41
42
43
44
# File 'lib/arel/nodes/window.rb', line 41

def initialize name
  super()
  @name = name
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



39
40
41
# File 'lib/arel/nodes/window.rb', line 39

def name
  @name
end

Instance Method Details

#initialize_copy(other) ⇒ Object



46
47
48
49
# File 'lib/arel/nodes/window.rb', line 46

def initialize_copy other
  super
  @name = other.name.clone
end