scwhittle commented on code in PR #34036: URL: https://github.com/apache/beam/pull/34036#discussion_r1967602888
########## sdks/java/io/debezium/src/main/java/org/apache/beam/io/debezium/KafkaSourceConsumerFn.java: ########## @@ -360,6 +361,24 @@ static class OffsetHolder implements Serializable { @Nullable Integer fetchedRecords) { this(offset, history, fetchedRecords, null, -1L); } + + @Override + public boolean equals(Object other) { + if (!(other instanceof OffsetHolder)) { + return false; + } + OffsetHolder otherOffset = (OffsetHolder) other; + return Objects.equals(offset, otherOffset.offset) + && Objects.equals(history, otherOffset.history) Review Comment: Thanks, added logic to do deeper comparison and added a test of equality. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@beam.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org