Skip to content

Commit

Permalink
Skip zero-sized table and non-None partition info
Browse files Browse the repository at this point in the history
Seems to induce a bug in libcudf for now.
  • Loading branch information
wence- committed Nov 19, 2024
1 parent 91e847e commit f2a905e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/pylibcudf/pylibcudf/tests/io/test_parquet.py
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,8 @@ def test_write_parquet(
max_dictionary_size,
):
_, pa_table = table_data
if len(pa_table) == 0 and partitions is not None:
pytest.skip("https://github.com/rapidsai/cudf/issues/17361")
plc_table = plc.interop.from_arrow(pa_table)
table_meta = plc.io.types.TableInputMetadata(plc_table)
sink = plc.io.SinkInfo([io.BytesIO()])
Expand Down

0 comments on commit f2a905e

Please sign in to comment.