# File lib/arel/nodes/window.rb, line 84 def eql? other super && self.name == other.name end
# File lib/arel/nodes/window.rb, line 80 def hash super ^ @name.hash end
# File lib/arel/nodes/window.rb, line 75 def initialize_copy other super @name = other.name.clone end
# File lib/arel/nodes/window.rb, line 70 def initialize name super() @name = name end