Expand description
Implementation of rank, dense_rank, and percent_rank window functions,
which can be evaluated at runtime during query execution.
Structs§
- Rank
- Rank calculates the rank in the window function with order by
- Rank
State - State for the RANK(rank) built-in window function.
Enums§
Functions§
- dense_
rank - Create a
WindowFunctionexpression forDenseRankuser-defined window function. - dense_
rank_ udwf - Returns a
WindowUDFfordense_rank. - percent_
rank - Create a
WindowFunctionexpression forPercentRankuser-defined window function. - percent_
rank_ udwf - Returns a
WindowUDFforpercent_rank. - rank
- Create a
WindowFunctionexpression forRankuser-defined window function. - rank_
udwf - Returns a
WindowUDFforrank.