LantaoJin edited a comment on pull request #35168:
URL: https://github.com/apache/spark/pull/35168#issuecomment-1014283974


   @chasingegg 
   ```
   select
   a,
   a
   from values (1, 1), (1, 2) as t1(a, b)
   UNION ALL
   SELECT
   c,
   d
   from values (2, 3), (2, 3) as t2(c, d)
   
   result is (1, 1), (1, 1), (3, 3), (3, 3)
   expected (1, 1), (1, 1), (2, 3), (2, 3)
   ```
   I cannot reproduce the result of the SQL in community spark(2.3/3.0/3.2). 
Can you double-check it?


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