We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6933d4 commit 0f45fe0Copy full SHA for 0f45fe0
src/main/java/org/apache/sysds/runtime/frame/data/FrameBlock.java
@@ -769,7 +769,7 @@ public void write(DataOutput out) throws IOException {
769
out.writeUTF(getColumnName(j));
770
_colmeta[j].write(out);
771
}
772
- if(type >= 0 && nRow > 0) // if allocated write column data
+ if(type > 0 && nRow > 0) // if allocated write column data
773
_coldata[j].write(out);
774
775
@@ -910,7 +910,7 @@ public long getExactSerializedSize() {
910
size += IOUtilFunctions.getUTFSize(getColumnName(j));
911
size += _colmeta[j].getExactSerializedSize();
912
913
- if(type >= 0)
+ if(type > 0)
914
size += _coldata[j].getExactSerializedSize();
915
916
return size;
0 commit comments