lgbo-ustc opened a new issue, #6634:
URL: https://github.com/apache/incubator-gluten/issues/6634

   ### Description
   
   With following tables
   ```scala
   case class TestData(key: Int, value: String)
   case class TestData2(a: Int, b: Int)
   case class TestData3(a: Int, b: Option[Int])
   ```
   This query fails.
   ```sql
   SELECT * FROM testData LEFT OUTER join testData2 ON key = a  AND key NOT IN 
(select a from testData3) where value = '1';
   ```
   
   ```
   Error: org.apache.hive.service.cli.HiveSQLException: Error running query: 
org.apache.gluten.exception.GlutenNotSupportException: Not supported to map 
spark function name to substrait function name: key#24 IN subquery#41, class 
name: InSubqueryExec.
   ```
   


-- 
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