# File lib/arel/nodes/window.rb, line 51 def initialize name super() @name = name end
# File lib/arel/nodes/window.rb, line 65 def eql? other super && self.name == other.name end
# File lib/arel/nodes/window.rb, line 61 def hash super ^ @name.hash end
# File lib/arel/nodes/window.rb, line 56 def initialize_copy other super @name = other.name.clone end