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
WindowFunction
expression forDenseRank
user-defined window function. - dense_
rank_ udwf - Returns a
WindowUDF
fordense_rank
. - percent_
rank - Create a
WindowFunction
expression forPercentRank
user-defined window function. - percent_
rank_ udwf - Returns a
WindowUDF
forpercent_rank
. - rank
- Create a
WindowFunction
expression forRank
user-defined window function. - rank_
udwf - Returns a
WindowUDF
forrank
.