Skip to content

Commit

Permalink
Update to deal with bools off for ORC
Browse files Browse the repository at this point in the history
  • Loading branch information
revans2 committed Dec 13, 2024
1 parent 30dd34e commit 5fda55a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion integration_tests/src/main/python/orc_write_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,11 @@ def test_write_round_trip_nullable_struct(spark_tmp_path, gen, orc_impl):
lambda spark, path: unary_op_df(spark, gen_for_struct, num_slices=1).write.orc(path),
lambda spark, path: spark.read.orc(path),
data_path,
conf={'spark.sql.orc.impl': orc_impl, 'spark.rapids.sql.format.orc.write.enabled': True})
conf={'spark.sql.orc.impl': orc_impl,
'spark.rapids.sql.format.orc.write.enabled': True,
# https://github.com/NVIDIA/spark-rapids/issues/11736, so verify that we still do it correctly
# once this is fixed
'spark.rapids.sql.format.orc.write.boolType.enabled' : True})

orc_part_write_gens = [
# Add back boolean_gen when https://github.com/rapidsai/cudf/issues/6763 is fixed
Expand Down

0 comments on commit 5fda55a

Please sign in to comment.