Skip to content

Commit

Permalink
improved tests
Browse files Browse the repository at this point in the history
  • Loading branch information
asolimando committed Mar 3, 2024
1 parent 84e1070 commit a90ddb8
Show file tree
Hide file tree
Showing 4 changed files with 311 additions and 72 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,9 @@ void evaluateOperator(ArrowRecordBatch arrowRecordBatch) {

@Override public void close() {
try {
buf.close();
if (buf != null) {
buf.close();
}
filter.close();
} catch (GandivaException e) {
throw Util.toUnchecked(e);
Expand Down
Loading

0 comments on commit a90ddb8

Please sign in to comment.