in common/src/main/java/org/opensearch/ml/common/dataframe/Row.java [174:187]
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
Row other = (Row) o;
if (this.size() != other.size()) {
return false;
}
for (int i = 0; i< this.size(); i++) {
if(!this.getValue(i).equals(other.getValue(i))) {
return false;
}
}
return true;
}