in vector/src/main/java/org/apache/arrow/vector/ipc/message/ArrowFooter.java [186:219]
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
ArrowFooter other = (ArrowFooter) obj;
if (dictionaries == null) {
if (other.dictionaries != null) {
return false;
}
} else if (!dictionaries.equals(other.dictionaries)) {
return false;
}
if (recordBatches == null) {
if (other.recordBatches != null) {
return false;
}
} else if (!recordBatches.equals(other.recordBatches)) {
return false;
}
if (schema == null) {
if (other.schema != null) {
return false;
}
} else if (!schema.equals(other.schema)) {
return false;
}
return true;
}