Skip to content

Commit

Permalink
Fix schema evolution test to avoid booleans for now
Browse files Browse the repository at this point in the history
Signed-off-by: Kuhu Shukla <[email protected]>
  • Loading branch information
kuhushukla committed Dec 5, 2024
1 parent eebf787 commit b26e62c
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions integration_tests/src/main/python/schema_evolution_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@

# List of additional column data generators to use when adding columns
_additional_gens = [
boolean_gen,
# Use every type except boolean , see https://github.com/NVIDIA/spark-rapids/issues/11762 and
# https://github.com/rapidsai/cudf/issues/6763 .
# Once the first issue is fixed, add back boolean_gen
byte_gen,
short_gen,
int_gen,
Expand All @@ -49,7 +51,10 @@
# simple_string_to_string_map_gen),
ArrayGen(_custom_date_gen),
struct_gen_decimal128,
StructGen([("c0", ArrayGen(long_gen)), ("c1", boolean_gen)]),
# Use every type except boolean , see https://github.com/NVIDIA/spark-rapids/issues/11762 and
# https://github.com/rapidsai/cudf/issues/6763 .
# Once the first issue is fixed, add back boolean_gen from int_gen for c1
StructGen([("c0", ArrayGen(long_gen)), ("c1", int_gen)]),
]

def get_additional_columns():
Expand Down

0 comments on commit b26e62c

Please sign in to comment.