Skip to content

Commit

Permalink
update query
Browse files Browse the repository at this point in the history
  • Loading branch information
akkio-97 committed Sep 21, 2020
1 parent a4bd3df commit d1d1a65
Showing 1 changed file with 11 additions and 0 deletions.
Expand Up @@ -58,6 +58,17 @@ public void putBoolean(int rowId, boolean value) {
}
}

@Override
public void putObject(int rowId, Object obj) {
if (!deletedRows.get(rowId)) {
if (nullBits.get(rowId)) {
columnVector.putNull(counter++);
} else {
columnVector.putObject(counter++, obj);
}
}
}

@Override
public void putFloat(int rowId, float value) {
if (!deletedRows.get(rowId)) {
Expand Down

0 comments on commit d1d1a65

Please sign in to comment.