in athena-federation-sdk/src/main/java/com/amazonaws/athena/connector/lambda/metadata/GetTableLayoutRequest.java [143:160]
public boolean equals(Object o)
{
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
GetTableLayoutRequest that = (GetTableLayoutRequest) o;
return Objects.equal(this.tableName, that.tableName) &&
Objects.equal(this.constraints, that.constraints) &&
Objects.equal(this.schema, that.schema) &&
Objects.equal(this.partitionCols, that.partitionCols) &&
Objects.equal(this.getRequestType(), that.getRequestType()) &&
Objects.equal(this.getCatalogName(), that.getCatalogName());
}