-
- Downloads
[SPARK-16195][SQL] Allow users to specify empty over clause in window...
[SPARK-16195][SQL] Allow users to specify empty over clause in window expressions through dataset API ## What changes were proposed in this pull request? Allow to specify empty over clause in window expressions through dataset API In SQL, its allowed to specify an empty OVER clause in the window expression. ```SQL select area, sum(product) over () as c from windowData where product > 3 group by area, product having avg(month) > 0 order by avg(month), product ``` In this case the analytic function sum is presented based on all the rows of the result set Currently its not allowed through dataset API and is handled in this PR. ## How was this patch tested? Added a new test in DataframeWindowSuite Author: Dilip Biswal <dbiswal@us.ibm.com> Closes #13897 from dilipbiswal/spark-empty-over.
Showing
- sql/core/src/main/scala/org/apache/spark/sql/Column.scala 17 additions, 0 deletionssql/core/src/main/scala/org/apache/spark/sql/Column.scala
- sql/core/src/main/scala/org/apache/spark/sql/expressions/Window.scala 1 addition, 1 deletion.../main/scala/org/apache/spark/sql/expressions/Window.scala
- sql/core/src/test/scala/org/apache/spark/sql/DataFrameWindowSuite.scala 12 additions, 0 deletions...est/scala/org/apache/spark/sql/DataFrameWindowSuite.scala
Please register or sign in to comment