public boolean equals()

in paimon-presto-common/src/main/java/org/apache/paimon/presto/PrestoTransactionHandle.java [48:57]


    public boolean equals(Object obj) {
        if (this == obj) {
            return true;
        }
        if ((obj == null) || (getClass() != obj.getClass())) {
            return false;
        }
        PrestoTransactionHandle other = (PrestoTransactionHandle) obj;
        return Objects.equals(uuid, other.uuid);
    }