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
WindowFrameContext in datafusion::logical_expr::window_state - Rust
[go: Go Back, main page]

pub enum WindowFrameContext {
    Rows(Arc<WindowFrame, Global>),
    Range {
        window_frame: Arc<WindowFrame, Global>,
        state: WindowFrameStateRange,
    },
    Groups {
        window_frame: Arc<WindowFrame, Global>,
        state: WindowFrameStateGroups,
    },
}
Expand description

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

Variants§

§

Rows(Arc<WindowFrame, Global>)

ROWS frames are inherently stateless.

§

Range

Fields

§window_frame: Arc<WindowFrame, Global>

RANGE frames are stateful, they store indices specifying where the previous search left off. This amortizes the overall cost to O(n) where n denotes the row count.

§

Groups

Fields

§window_frame: Arc<WindowFrame, Global>

GROUPS frames are stateful, they store group boundaries and indices specifying where the previous search left off. This amortizes the overall cost to O(n) where n denotes the row count.

Implementations§

source§

impl WindowFrameContext

source

pub fn new( window_frame: Arc<WindowFrame, Global>, sort_options: Vec<SortOptions, Global> ) -> WindowFrameContext

Create a new state object for the given window frame.

source

pub fn calculate_range( &mut self, range_columns: &[Arc<dyn Array, Global>], last_range: &Range<usize>, length: usize, idx: usize ) -> Result<Range<usize>, DataFusionError>

This function calculates beginning/ending indices for the frame of the current row.

Trait Implementations§

source§

impl Debug for WindowFrameContext

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> Allocation for Twhere T: RefUnwindSafe + Send + Sync,