cloud-fan commented on a change in pull request #35232:
URL: https://github.com/apache/spark/pull/35232#discussion_r821291495
##########
File path:
sql/core/src/test/scala/org/apache/spark/sql/GeneratorFunctionSuite.scala
##########
@@ -357,6 +357,30 @@ class GeneratorFunctionSuite extends QueryTest with
SharedSparkSession {
val df = Seq(1, 2, 3).toDF("v")
checkAnswer(df.select(explode(array(min($"v"), max($"v")))), Row(1) ::
Row(3) :: Nil)
}
+
+ test("SPARK-37947: lateral view <func>_outer()") {
Review comment:
before this PR, `<func>_outer()` can only be used in SELECT?
--
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]