# File lib/arel/nodes/window.rb, line 69 def initialize name super() @name = name end
# File lib/arel/nodes/window.rb, line 83 def eql? other super && self.name == other.name end
# File lib/arel/nodes/window.rb, line 79 def hash super ^ @name.hash end
# File lib/arel/nodes/window.rb, line 74 def initialize_copy other super @name = other.name.clone end