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

#_caller, #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.



51
52
53
54
# File 'lib/arel/nodes/window.rb', line 51

def initialize name
  super()
  @name = name
end

Instance Attribute Details

#nameObject

Returns the value of attribute name.



49
50
51
# File 'lib/arel/nodes/window.rb', line 49

def name
  @name
end

Instance Method Details

#eql?(other) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


65
66
67
# File 'lib/arel/nodes/window.rb', line 65

def eql? other
  super && self.name == other.name
end

#hashObject



61
62
63
# File 'lib/arel/nodes/window.rb', line 61

def hash
  super ^ @name.hash
end

#initialize_copy(other) ⇒ Object



56
57
58
59
# File 'lib/arel/nodes/window.rb', line 56

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