Skip to content

Commit

Permalink
fix an typo error in test
Browse files Browse the repository at this point in the history
Signed-off-by: Firestarman <[email protected]>
  • Loading branch information
firestarman committed Nov 16, 2023
1 parent 24e9b7f commit 69f05f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion integration_tests/src/main/python/join_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 69f05f1

Please sign in to comment.