Struct datafusion_expr::expr_fn::SimpleWindowUDF
source · pub struct SimpleWindowUDF { /* private fields */ }
Expand description
Implements WindowUDFImpl
for functions that have a single signature and
return type.
Implementations§
source§impl SimpleWindowUDF
impl SimpleWindowUDF
sourcepub fn new(
name: impl Into<String>,
input_type: DataType,
return_type: DataType,
volatility: Volatility,
partition_evaluator_factory: PartitionEvaluatorFactory,
) -> Self
pub fn new( name: impl Into<String>, input_type: DataType, return_type: DataType, volatility: Volatility, partition_evaluator_factory: PartitionEvaluatorFactory, ) -> Self
Create a new SimpleWindowUDF
from a name, input types, return type and
implementation. Implementing WindowUDFImpl
allows more flexibility
Trait Implementations§
source§impl Debug for SimpleWindowUDF
impl Debug for SimpleWindowUDF
source§impl WindowUDFImpl for SimpleWindowUDF
impl WindowUDFImpl for SimpleWindowUDF
source§fn signature(&self) -> &Signature
fn signature(&self) -> &Signature
Returns the function’s
Signature
for information about what input
types are accepted and the function’s Volatility.source§fn return_type(&self, _arg_types: &[DataType]) -> Result<DataType>
fn return_type(&self, _arg_types: &[DataType]) -> Result<DataType>
What
DataType
will be returned by this function, given the types of
the argumentssource§fn partition_evaluator(&self) -> Result<Box<dyn PartitionEvaluator>>
fn partition_evaluator(&self) -> Result<Box<dyn PartitionEvaluator>>
Invoke the function, returning the
PartitionEvaluator
instancesource§fn aliases(&self) -> &[String]
fn aliases(&self) -> &[String]
Returns any aliases (alternate names) for this function. Read more
source§fn simplify(&self) -> Option<WindowFunctionSimplification>
fn simplify(&self) -> Option<WindowFunctionSimplification>
Optionally apply per-UDWF simplification / rewrite rules. Read more
source§fn equals(&self, other: &dyn WindowUDFImpl) -> bool
fn equals(&self, other: &dyn WindowUDFImpl) -> bool
Return true if this window UDF is equal to the other. Read more
source§fn hash_value(&self) -> u64
fn hash_value(&self) -> u64
Returns a hash value for this window UDF. Read more
Auto Trait Implementations§
impl Freeze for SimpleWindowUDF
impl !RefUnwindSafe for SimpleWindowUDF
impl Send for SimpleWindowUDF
impl Sync for SimpleWindowUDF
impl Unpin for SimpleWindowUDF
impl !UnwindSafe for SimpleWindowUDF
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more