Skip to content

Commit

Permalink
Fix for issue #164
Browse files Browse the repository at this point in the history
the setNull method  now add a value to data's list
  • Loading branch information
cdessanti committed Feb 28, 2019
1 parent 85c0472 commit d459f9f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ void add(int value) {
}

void setNull(boolean b) {
if (colType == TDatumType.STR) tcolumn.data.addToStr_col(null); else tcolumn.data.addToInt_col(0);
tcolumn.addToNulls(b);
}

Expand Down

0 comments on commit d459f9f

Please sign in to comment.