in athena-federation-sdk/src/main/java/com/amazonaws/athena/connector/lambda/records/ReadRecordsRequest.java [176:196]
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ReadRecordsRequest that = (ReadRecordsRequest) o;
return Objects.equal(this.tableName, that.tableName) &&
Objects.equal(this.schema, that.schema) &&
Objects.equal(this.split, that.split) &&
Objects.equal(this.constraints, that.constraints) &&
Objects.equal(this.maxBlockSize, that.maxBlockSize) &&
Objects.equal(this.maxInlineBlockSize, that.maxInlineBlockSize) &&
Objects.equal(this.getRequestType(), that.getRequestType()) &&
Objects.equal(this.getCatalogName(), that.getCatalogName()) &&
Objects.equal(this.getQueryId(), that.getQueryId());
}