Skip to content

Commit 876b660

Browse files
committed
disable AQE for test_delta_deletion_vector_read
1 parent ddbb4a5 commit 876b660

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

integration_tests/src/main/python/delta_lake_delete_test.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,11 @@ def read_parquet_sql(data_path):
244244
with_cpu_session(setup_tables, conf=enable_conf)
245245
with_cpu_session(write_func(data_path), conf=enable_conf)
246246

247-
assert_gpu_and_cpu_are_equal_collect(read_parquet_sql(data_path), conf={"spark.rapids.sql.format.parquet.reader.type": reader_type})
247+
assert_gpu_and_cpu_are_equal_collect(
248+
read_parquet_sql(data_path),
249+
conf={"spark.rapids.sql.format.parquet.reader.type": reader_type,
250+
# Disable AQE temporarily until https://github.com/NVIDIA/spark-rapids/issues/14319 is resolved.
251+
"spark.sql.adaptive.enabled": "false"})
248252

249253
@allow_non_gpu(*delta_meta_allow)
250254
@delta_lake

0 commit comments

Comments
 (0)