cloud-fan commented on code in PR #39479: URL: https://github.com/apache/spark/pull/39479#discussion_r1067638085
########## sql/core/src/test/resources/sql-tests/inputs/join-lateral.sql: ########## @@ -177,6 +177,25 @@ SELECT * FROM t3 JOIN LATERAL (SELECT EXPLODE_OUTER(c2)); SELECT * FROM t3 JOIN LATERAL (SELECT EXPLODE(c2)) t(c3) ON c1 = c3; SELECT * FROM t3 LEFT JOIN LATERAL (SELECT EXPLODE(c2)) t(c3) ON c1 = c3; +-- SPARK-41961: lateral join with table-valued functions +SELECT * FROM LATERAL EXPLODE(ARRAY(1, 2)); Review Comment: interesting, do other databases also support this syntax? -- 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]
