Github user wangyum commented on the issue:

    https://github.com/apache/spark/pull/21871
  
    workaround:
    ```sql
    SELECT * FROM t4
    WHERE
    (t4a, t4b, t4c) IN (SELECT t5a, t5b, t5c FROM t5);
    
    ->
    
    SELECT * FROM t4
    WHERE
    (t4a, t4b, t4c) IN (SELECT CAST(t5a as DOUBLE), CAST(t5b AS STRING), 
CAST(t5c AS STRING) FROM t5);
    ```



---

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

Reply via email to