-
Notifications
You must be signed in to change notification settings - Fork 915
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix regression HostColumnVectorCore requiring native libs #9948
Fix regression HostColumnVectorCore requiring native libs #9948
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
build |
rerun tests |
Codecov Report
@@ Coverage Diff @@
## branch-22.02 #9948 +/- ##
================================================
- Coverage 10.49% 10.42% -0.07%
================================================
Files 119 119
Lines 20305 20475 +170
================================================
+ Hits 2130 2134 +4
- Misses 18175 18341 +166
Continue to review full report at Codecov.
|
if (data != null) { | ||
data.close(); | ||
} | ||
if (offsets != null) { | ||
offsets.close(); | ||
} | ||
if (valid != null) { | ||
valid.close(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We could benefit from some 3rd-party or our own flavor of API callable like this: IOUtils.close(data, offsets, valid);
@gpucibot merge |
#9485 regressed the fix in #9332. This restores the fix. It also eliminates the problematic
ColumnVector.closeBuffers
which, despite the plurality in the name, only closed one buffer and had dubious utility in converting throwables into runtime exceptions.