blob: c792f0af985d1d1e710e790f0012b6ad8f42f2e5 (
plain) (
tree)
|
|
module Arel
module Nodes
class NamedFunction < Arel::Nodes::Function
attr_accessor :name
def initialize name, expr, aliaz = nil
super(expr, aliaz)
@name = name
end
def hash
super ^ @name.hash
end
def eql? other
super && self.name == other.name
end
alias :== :eql?
end
end
end
|