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

    https://github.com/apache/spark/pull/21403#discussion_r218398060
  
    --- Diff: 
sql/core/src/test/resources/sql-tests/results/subquery/in-subquery/in-basic.sql.out
 ---
    @@ -0,0 +1,70 @@
    +-- Automatically generated by SQLQueryTestSuite
    +-- Number of queries: 7
    +
    +
    +-- !query 0
    +create temporary view tab_a as select * from values (1, 1) as tab_a(a1, b1)
    +-- !query 0 schema
    +struct<>
    +-- !query 0 output
    +
    +
    +
    +-- !query 1
    +create temporary view tab_b as select * from values (1, 1) as tab_b(a2, b2)
    +-- !query 1 schema
    +struct<>
    +-- !query 1 output
    +
    +
    +
    +-- !query 2
    +create temporary view struct_tab as select struct(col1 as a, col2 as b) as 
record from
    + values (1, 1), (1, 2), (2, 1), (2, 2)
    +-- !query 2 schema
    +struct<>
    +-- !query 2 output
    +
    +
    +
    +-- !query 3
    +select 1 from tab_a where (a1, b1) not in (select a2, b2 from tab_b)
    --- End diff --
    
    the same as after the patch, ie. an empty result set. It is included here 
in order to ensure that this is considered a valid query.


---

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

Reply via email to