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