jcsherin commented on code in PR #13040:
URL: https://github.com/apache/datafusion/pull/13040#discussion_r1815154833
##########
docs/source/user-guide/sql/window_functions.md:
##########
@@ -146,40 +146,6 @@ RANGE and GROUPS modes require an ORDER BY clause (with
RANGE the ORDER BY must
All [aggregate functions](aggregate_functions.md) can be used as window
functions.
-## Ranking functions
-
-- [rank](#rank)
-- [dense_rank](#dense_rank)
-- [ntile](#ntile)
-
-### `rank`
-
-Rank of the current row with gaps; same as row_number of its first peer.
-
-```sql
-rank()
-```
-
-### `dense_rank`
-
-Rank of the current row without gaps; this function counts peer groups.
-
-```sql
-dense_rank()
-```
-
-### `ntile`
-
-Integer ranging from 1 to the argument value, dividing the partition as
equally as possible.
-
-```sql
-ntile(expression)
-```
-
-#### Arguments
-
-- **expression**: An integer describing the number groups the partition should
be split into
-
Review Comment:
This makes sense to me now. You are removing the `{rank, dense_rank}`
functions here because they were already migrated to new documentation.
Let this be 👍
--
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]