-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
ARROW-402: avoid empty buffers #232
Conversation
Would be good to have a direct unit test for this, but I'll make sure it gets triggered by the integration tests, and then fixed by this patch. |
@wesm I found the actual bug. |
Oh, great. Will merge once the build is green -- I'll see if I can get a green integration test build in ARROW-394 once that's rebased |
Author: Wes McKinney <[email protected]> Closes apache#232 from wesm/remove-libparquet_thrift and squashes the following commits: d72546b [Wes McKinney] Remove parquet/thrift subdirectory and separate parquet_thrift library component
Author: Wes McKinney <[email protected]> Closes apache#232 from wesm/remove-libparquet_thrift and squashes the following commits: d72546b [Wes McKinney] Remove parquet/thrift subdirectory and separate parquet_thrift library component Change-Id: I3922cf10aab607e8db5ddabba888a38763ff59f7
Author: Wes McKinney <[email protected]> Closes apache#232 from wesm/remove-libparquet_thrift and squashes the following commits: d72546b [Wes McKinney] Remove parquet/thrift subdirectory and separate parquet_thrift library component Change-Id: I3922cf10aab607e8db5ddabba888a38763ff59f7
Author: Wes McKinney <[email protected]> Closes apache#232 from wesm/remove-libparquet_thrift and squashes the following commits: d72546b [Wes McKinney] Remove parquet/thrift subdirectory and separate parquet_thrift library component Change-Id: I3922cf10aab607e8db5ddabba888a38763ff59f7
Author: Wes McKinney <[email protected]> Closes apache#232 from wesm/remove-libparquet_thrift and squashes the following commits: d72546b [Wes McKinney] Remove parquet/thrift subdirectory and separate parquet_thrift library component Change-Id: I3922cf10aab607e8db5ddabba888a38763ff59f7
I'm not sure what's wrong with the accounting of empty buffers.
This seems to fix the issue. Feel free to use it to get unblocked.
allocator.getEmpty() is special and doesn't get accounted since it does not use memory.
@jacques-n: any insight?