v2/gcs-to-sourcedb/src/main/java/com/google/cloud/teleport/v2/templates/common/TrimmedShardedDataChangeRecord.java [116:133]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public boolean equals(@javax.annotation.Nullable Object o) {
    if (this == o) {
      return true;
    }
    if (!(o instanceof TrimmedShardedDataChangeRecord)) {
      return false;
    }
    TrimmedShardedDataChangeRecord that = (TrimmedShardedDataChangeRecord) o;
    return Objects.equals(commitTimestamp, that.commitTimestamp)
        && Objects.equals(serverTransactionId, that.serverTransactionId)
        && Objects.equals(recordSequence, that.recordSequence)
        && Objects.equals(tableName, that.tableName)
        && Objects.equals(mods, that.mods)
        && modType == that.modType
        && numberOfRecordsInTransaction == that.numberOfRecordsInTransaction
        && Objects.equals(transactionTag, that.transactionTag)
        && Objects.equals(shard, that.shard);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



v2/spanner-change-streams-to-sharded-file-sink/src/main/java/com/google/cloud/teleport/v2/templates/common/TrimmedShardedDataChangeRecord.java [116:133]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public boolean equals(@javax.annotation.Nullable Object o) {
    if (this == o) {
      return true;
    }
    if (!(o instanceof TrimmedShardedDataChangeRecord)) {
      return false;
    }
    TrimmedShardedDataChangeRecord that = (TrimmedShardedDataChangeRecord) o;
    return Objects.equals(commitTimestamp, that.commitTimestamp)
        && Objects.equals(serverTransactionId, that.serverTransactionId)
        && Objects.equals(recordSequence, that.recordSequence)
        && Objects.equals(tableName, that.tableName)
        && Objects.equals(mods, that.mods)
        && modType == that.modType
        && numberOfRecordsInTransaction == that.numberOfRecordsInTransaction
        && Objects.equals(transactionTag, that.transactionTag)
        && Objects.equals(shard, that.shard);
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



