datafusion::logical_expr

Struct WindowUDF

Source
pub struct WindowUDF { /* private fields */ }
Expand description

Logical representation of a user-defined window function (UDWF) A UDWF is different from a UDF in that it is stateful across batches.

See the documentation on PartitionEvaluator for more details

  1. For simple use cases, use create_udwf (examples in simple_udwf.rs).

  2. For advanced use cases, use WindowUDFImpl which provides full API access (examples in advanced_udwf.rs).

§API Note

This is a separate struct from WindowUDFImpl to maintain backwards compatibility with the older API.

Implementations§

Source§

impl WindowUDF

Source

pub fn new_from_impl<F>(fun: F) -> WindowUDF
where F: WindowUDFImpl + 'static,

Create a new WindowUDF from a [WindowUDFImpl] trait object

Note this is the same as using the From impl (WindowUDF::from)

Source

pub fn inner(&self) -> &Arc<dyn WindowUDFImpl>

Return the underlying WindowUDFImpl trait object for this function

Source

pub fn with_aliases( self, aliases: impl IntoIterator<Item = &'static str>, ) -> WindowUDF

Adds additional names that can be used to invoke this function, in addition to name

If you implement WindowUDFImpl directly you should return aliases directly.

Source

pub fn call(&self, args: Vec<Expr>) -> Expr

creates a Expr that calls the window function with default values for order_by, partition_by, window_frame.

See ExprFunctionExt for details on setting these values.

This utility allows using a user defined window function without requiring access to the registry, such as with the DataFrame API.

Source

pub fn name(&self) -> &str

Returns this function’s name

See WindowUDFImpl::name for more details.

Source

pub fn aliases(&self) -> &[String]

Returns the aliases for this function.

Source

pub fn signature(&self) -> &Signature

Returns this function’s signature (what input types are accepted)

See WindowUDFImpl::signature for more details.

Source

pub fn simplify( &self, ) -> Option<Box<dyn Fn(WindowFunction, &dyn SimplifyInfo) -> Result<Expr, DataFusionError>>>

Do the function rewrite

See WindowUDFImpl::simplify for more details.

Source

pub fn expressions( &self, expr_args: ExpressionArgs<'_>, ) -> Vec<Arc<dyn PhysicalExpr>>

Expressions that are passed to the PartitionEvaluator.

See WindowUDFImpl::expressions for more details.

Source

pub fn partition_evaluator_factory( &self, partition_evaluator_args: PartitionEvaluatorArgs<'_>, ) -> Result<Box<dyn PartitionEvaluator>, DataFusionError>

Return a PartitionEvaluator for evaluating this window function

Source

pub fn field( &self, field_args: WindowUDFFieldArgs<'_>, ) -> Result<Field, DataFusionError>

Returns the field of the final result of evaluating this window function.

See WindowUDFImpl::field for more details.

Source

pub fn sort_options(&self) -> Option<SortOptions>

Returns custom result ordering introduced by this window function which is used to update ordering equivalences.

See WindowUDFImpl::sort_options for more details.

Source

pub fn coerce_types( &self, arg_types: &[DataType], ) -> Result<Vec<DataType>, DataFusionError>

See WindowUDFImpl::coerce_types for more details.

Source

pub fn reverse_expr(&self) -> ReversedUDWF

Returns the reversed user-defined window function when the order of evaluation is reversed.

See WindowUDFImpl::reverse_expr for more details.

Source

pub fn documentation(&self) -> Option<&Documentation>

Returns the documentation for this Window UDF.

Documentation can be accessed programmatically as well as generating publicly facing documentation.

Trait Implementations§

Source§

impl Clone for WindowUDF

Source§

fn clone(&self) -> WindowUDF

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for WindowUDF

Source§

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

Formats the value using the given formatter. Read more
Source§

impl Display for WindowUDF

Defines how the WindowUDF is shown to users

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<F> From<F> for WindowUDF
where F: WindowUDFImpl + Send + Sync + 'static,

Source§

fn from(fun: F) -> WindowUDF

Converts to this type from the input type.
Source§

impl Hash for WindowUDF

Source§

fn hash<H>(&self, state: &mut H)
where H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for WindowUDF

Source§

fn eq(&self, other: &WindowUDF) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for WindowUDF

Source§

fn partial_cmp(&self, other: &WindowUDF) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Eq for WindowUDF

Auto Trait Implementations§

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T