Github user huaxingao commented on a diff in the pull request:

    https://github.com/apache/spark/pull/20400#discussion_r165258763
  
    --- Diff: python/pyspark/sql/functions.py ---
    @@ -809,6 +809,48 @@ def ntile(n):
         return Column(sc._jvm.functions.ntile(int(n)))
     
     
    +@since(2.3)
    +def unboundedPreceding():
    +    """
    +    Window function: returns the special frame boundary that represents 
the first row
    +    in the window partition.
    +
    +    >>> df = spark.createDataFrame([(5,)])
    +    >>> df.select(unboundedPreceding()).columns[0]
    +    'UNBOUNDED PRECEDING'
    --- End diff --
    
    I guess I will just remove these tests since we already have a doc test in 
window.py. 


---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to