Expand description
Structures used to hold window function state (for implementing WindowUDFs)
Structs§
- Partition
Batch State - State for each unique partition determined according to PARTITION BY column(s)
- Window
AggState - Holds the state of evaluating a window function
- Window
Frame State Groups - This structure encapsulates all the state information we require as we scan groups of data while processing window frames.
- Window
Frame State Range - This structure encapsulates all the state information we require as we scan
ranges of data while processing RANGE frames.
Attribute
sort_options
stores the column ordering specified by the ORDER BY clause. This information is used to calculate the range.
Enums§
- Window
Frame Context - This object stores the window frame state for use in incremental calculations.