class Arel::Nodes::NamedFunction
def eql?(other)
def eql?(other) super && self.name == other.name end
def hash
def hash super ^ @name.hash end
def initialize(name, expr, aliaz = nil)
def initialize(name, expr, aliaz = nil) super(expr, aliaz) @name = name end