in asterix-bad/src/main/java/org/apache/asterix/bad/metadata/Procedure.java [103:115]
public boolean equals(Object other) {
if (this == other) {
return true;
}
if (!(other instanceof Procedure)) {
return false;
}
Procedure otherDataset = (Procedure) other;
if (!otherDataset.procedureId.equals(procedureId)) {
return false;
}
return true;
}