class Arel::Nodes::InsertStatement

def eql?(other)

def eql?(other)
  self.class == other.class &&
    self.relation == other.relation &&
    self.columns == other.columns &&
    self.select == other.select &&
    self.values == other.values
end