Github user cloud-fan commented on a diff in the pull request:

    https://github.com/apache/spark/pull/22987#discussion_r232135028
  
    --- Diff: sql/core/src/test/resources/sql-tests/inputs/window.sql ---
    @@ -109,3 +109,9 @@ last_value(false, false) OVER w AS 
last_value_contain_null
     FROM testData
     WINDOW w AS ()
     ORDER BY cate, val;
    +
    +-- parentheses around window reference
    +SELECT cate, sum(val) OVER (w)
    +FROM testData
    +WHERE val is not null
    +WINDOW w AS (PARTITION BY cate ORDER BY val);
    --- End diff --
    
    need a new line at the end.


---

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

Reply via email to