From 69f05f1994fc9b060a3745e5e2a5a98bc3750d32 Mon Sep 17 00:00:00 2001 From: Firestarman Date: Thu, 16 Nov 2023 09:12:06 +0800 Subject: [PATCH] fix an typo error in test Signed-off-by: Firestarman --- integration_tests/src/main/python/join_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/src/main/python/join_test.py b/integration_tests/src/main/python/join_test.py index 46022b6a1ad..4d62ad6397a 100644 --- a/integration_tests/src/main/python/join_test.py +++ b/integration_tests/src/main/python/join_test.py @@ -1080,7 +1080,7 @@ def test_broadcast_nested_join_fix_fallback_by_inputfile(spark_tmp_path, is_gpu_ def do_join(spark): left = spark.read.parquet(data_path_parquet) right = spark.read.orc(data_path_orc) - return left.crossJoin(broadcast(left)).selectExpr("*", "input_file_block_length()") + return left.crossJoin(broadcast(right)).selectExpr("*", "input_file_block_length()") join_class = 'GpuBroadcastNestedLoopJoinExec' \ if is_gpu_parquet and is_gpu_broadcast else 'BroadcastNestedLoopJoinExec'