public boolean equals()

in spanner-data-validator-java/src/main/java/com/google/migration/dto/session/SourceTable.java [117:130]


  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (!(o instanceof SourceTable)) {
      return false;
    }
    final SourceTable other = (SourceTable) o;
    return this.name.equals(other.name)
        && this.schema.equals(other.schema)
        && Arrays.equals(this.colIds, other.colIds)
        && this.colDefs.equals(other.colDefs)
        && Arrays.equals(this.primaryKeys, other.primaryKeys);
  }