public boolean equals()

in paimon-presto-common/src/main/java/org/apache/paimon/presto/PrestoTableLayoutHandle.java [56:68]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }

        if (obj == null || getClass() != obj.getClass()) {
            return false;
        }

        PrestoTableLayoutHandle other = (PrestoTableLayoutHandle) obj;
        return Objects.equals(tableHandle, other.tableHandle)
                && Objects.equals(constraintSummary, other.constraintSummary);
    }