in paimon-presto-common/src/main/java/org/apache/paimon/presto/PaimonConnectorId.java [45:54]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if ((obj == null) || (getClass() != obj.getClass())) {
return false;
}
PaimonConnectorId other = (PaimonConnectorId) obj;
return Objects.equals(this.id, other.id);
}