Skip to content

Commit 5fc0dc4

Browse files
committed
'Disable AQE for Delta merge tests
Signed-off-by: Jihoon Son <ghoonson@gmail.com>
1 parent d7fd093 commit 5fc0dc4

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

integration_tests/src/main/python/delta_lake_merge_test.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2023-2025, NVIDIA CORPORATION.
1+
# Copyright (c) 2023-2026, NVIDIA CORPORATION.
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License");
44
# you may not use this file except in compliance with the License.
@@ -24,6 +24,10 @@
2424
{"spark.rapids.sql.command.MergeIntoCommand": "true",
2525
"spark.rapids.sql.command.MergeIntoCommandEdge": "true"})
2626

27+
if is_spark_400_or_later():
28+
# Disable AQE temporarily until https://github.com/NVIDIA/spark-rapids/issues/14319 is resolved.
29+
delta_merge_enabled_conf = copy_and_update(delta_merge_enabled_conf, {"spark.sql.adaptive.enabled": "false"})
30+
2731
fallback_test_params = [{"spark.rapids.sql.format.delta.write.enabled": "false"},
2832
{"spark.rapids.sql.format.parquet.enabled": "false"},
2933
{"spark.rapids.sql.format.parquet.write.enabled": "false"},

0 commit comments

Comments
 (0)