Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
datafusion_expr::window_state - Rust
[go: Go Back, main page]

Expand description

Structures used to hold window function state (for implementing WindowUDFs)

Structs

  • State for each unique partition determined according to PARTITION BY column(s)
  • Holds the state of evaluating a window function
  • This structure encapsulates all the state information we require as we scan groups of data while processing window frames.
  • 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

  • This object stores the window frame state for use in incremental calculations.