class Arel::Nodes::Case

def eql?(other)

def eql?(other)
  self.class == other.class &&
    self.case == other.case &&
    self.conditions == other.conditions &&
    self.default == other.default
end