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