in spanner-data-validator-java/src/main/java/com/google/migration/dto/session/NameAndCols.java [34:43]
public boolean equals(Object o) {
if (o == this) {
return true;
}
if (!(o instanceof NameAndCols)) {
return false;
}
final NameAndCols other = (NameAndCols) o;
return this.name.equals(other.name) && this.cols.equals(other.cols);
}