Github user xuanyuanking commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22198#discussion_r212822215
  
    --- Diff: 
sql/core/src/test/scala/org/apache/spark/sql/DataFrameJoinSuite.scala ---
    @@ -191,6 +195,48 @@ class DataFrameJoinSuite extends QueryTest with 
SharedSQLContext {
         assert(plan2.collect { case p: BroadcastHashJoinExec => p }.size == 1)
       }
     
    +  test("SPARK-25121 Supports multi-part names for broadcast hint 
resolution") {
    +    val (table1Name, table2Name) = ("t1", "t2")
    +    withTempDatabase { dbName =>
    +      withTable(table1Name, table2Name) {
    +        withSQLConf(SQLConf.AUTO_BROADCASTJOIN_THRESHOLD.key -> "0") {
    +          spark.range(50).write.saveAsTable(s"$dbName.$table1Name")
    +          spark.range(100).write.saveAsTable(s"$dbName.$table2Name")
    +          // First, makes sure a join is not broadcastable
    +          val plan = sql(s"SELECT * FROM $dbName.$table1Name, 
$dbName.$table2Name " +
    +              s"WHERE $table1Name.id = $table2Name.id")
    +            .queryExecution.executedPlan
    +          assert(plan.collect { case p: BroadcastHashJoinExec => p }.size 
== 0)
    +
    +          // Uses multi-part table names for broadcast hints
    +          def checkIfHintApplied(tableName: String, hintTableName: 
String): Unit = {
    --- End diff --
    
    `hintTableName` is never used in this func?


---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to