Details
-
Improvement
-
Status: In Progress
-
Major
-
Resolution: Unresolved
-
3.1.0
-
None
-
None
Description
How to reproduce this issue:
spark.range(100).createTempView("t1") spark.range(200).createTempView("t2") spark.sql("set spark.sql.autoBroadcastJoinThreshold=0") spark.sql("select /*+ COALESCE(1) */ t1.* from t1 join t2 on (t1.id = t2.id)").show
The dag is:
A real case: