We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug Because of the bug fixed by #8314 I decided to take a look at everywhere that make_empty_column is used without an explicit type id.
cudf/cpp/src/io/parquet/reader_impl.cu
Line 1575 in de579a5
is one of those places, but it looks like all of the readers have similar problems, just not all of them support nested types yet.
Steps/Code to reproduce bug Just read the attached file empty_nested.snappy.parquet.zip and you get an error like.
cuDF failure at: ../src/column/column_factories.cpp:66: make_empty_column is invalid to call on nested types
Expected behavior You get the correct empty table back.
The text was updated successfully, but these errors were encountered:
@nvdbaranec do you want to tackle #8322 together with this one?
Sorry, something went wrong.
Yep, I'll handle it. (Separate PR though)
Handle nested column types properly for empty parquet files. (#8350)
bcb1237
Fixes: #8323 Also fixes a recently introduced bug in the test column equality checker. The code was previously relying on accesses to device memory being transparently handled by `thrust::device_vector` Authors: - https://github.com/nvdbaranec Approvers: - Mike Wilson (https://github.com/hyperbolic2346) - Devavret Makkar (https://github.com/devavret) - Nghia Truong (https://github.com/ttnghia) URL: #8350
nvdbaranec
Successfully merging a pull request may close this issue.
Describe the bug
Because of the bug fixed by #8314 I decided to take a look at everywhere that make_empty_column is used without an explicit type id.
cudf/cpp/src/io/parquet/reader_impl.cu
Line 1575 in de579a5
is one of those places, but it looks like all of the readers have similar problems, just not all of them support nested types yet.
Steps/Code to reproduce bug
Just read the attached file empty_nested.snappy.parquet.zip and you get an error like.
Expected behavior
You get the correct empty table back.
The text was updated successfully, but these errors were encountered: