lwz9103 opened a new issue, #9343:
URL: https://github.com/apache/incubator-gluten/issues/9343

   ### Backend
   
   CH (ClickHouse)
   
   ### Bug description
   
   ```
       def join(hint: String): DataFrame = {
         sql(
           s"""
              |SELECT /*+ $hint */ *
              |FROM testData t1
              |LEFT OUTER JOIN
              |testData2 t2
              |ON key = a AND concat(value, b) = '12'
              |""".stripMargin)
       }
   
       val df1 = join("SHUFFLE_HASH(t1)")
       val res1 = df1.collect()
       val res2 = df1.queryExecution.executedPlan.executeCollectPublic()
       println(res1.size)
       println(res2.size)
   ```
   
   res1.size = 100, res2.size = 0
   
   <!-- Failed to upload "image.png" -->
   
   ### Gluten version
   
   _No response_
   
   ### Spark version
   
   None
   
   ### Spark configurations
   
   _No response_
   
   ### System information
   
   _No response_
   
   ### Relevant logs
   
   ```bash
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to