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

    https://github.com/apache/spark/pull/14625#discussion_r75215512
  
    --- Diff: sql/core/src/test/resources/sql-tests/results/using-join.sql.out 
---
    @@ -0,0 +1,132 @@
    +-- Automatically generated by SQLQueryTestSuite
    +-- Number of queries: 13
    +
    +
    +-- !query 0
    +create temporary view ut1 as select * from values
    +  ("r1c1", "r1c2", "t1r1c3"),
    +  ("r2c1", "r2c2", "t1r2c3"),
    +  ("r3c1x", "r3c2", "t1r3c3")
    +  as ut1(c1, c2, c3)
    +-- !query 0 schema
    +struct<>
    +-- !query 0 output
    +
    +
    +
    +-- !query 1
    +create temporary view ut2 as select * from values
    +  ("r1c1", "r1c2", "t2r1c3"),
    +  ("r2c1", "r2c2", "t2r2c3"),
    +  ("r3c1y", "r3c2", "t2r3c3")
    +  as ut2(c1, c2, c3)
    +-- !query 1 schema
    +struct<>
    +-- !query 1 output
    +
    +
    +
    +-- !query 2
    +create temporary view ut3 as select * from values
    +  (null, "r1c2", "t3r1c3"),
    +  ("r2c1", "r2c2", "t3r2c3"),
    +  ("r3c1y", "r3c2", "t3r3c3")
    +  as ut3(c1, c2, c3)
    +-- !query 2 schema
    +struct<>
    +-- !query 2 output
    +scala.MatchError
    +NullType (of class org.apache.spark.sql.types.NullType$)
    --- End diff --
    
    This failure is waiting for the PR: 
https://github.com/apache/spark/pull/14676


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

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

Reply via email to