common/src/main/java/org/opensearch/ml/common/dataframe/Row.java [178:186]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        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;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



common/src/main/java/org/opensearch/ml/common/dataframe/Row.java [190:198]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        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;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



