pub struct BuiltInWindowExpr { /* private fields */ }
Expand description
A window expr that takes the form of a BuiltInWindowFunctionExpr
.
Implementations§
Source§impl BuiltInWindowExpr
impl BuiltInWindowExpr
Sourcepub fn new(
expr: Arc<dyn BuiltInWindowFunctionExpr>,
partition_by: &[Arc<dyn PhysicalExpr>],
order_by: &[PhysicalSortExpr],
window_frame: Arc<WindowFrame>,
) -> BuiltInWindowExpr
pub fn new( expr: Arc<dyn BuiltInWindowFunctionExpr>, partition_by: &[Arc<dyn PhysicalExpr>], order_by: &[PhysicalSortExpr], window_frame: Arc<WindowFrame>, ) -> BuiltInWindowExpr
create a new built-in window function expression
Sourcepub fn get_built_in_func_expr(&self) -> &Arc<dyn BuiltInWindowFunctionExpr>
pub fn get_built_in_func_expr(&self) -> &Arc<dyn BuiltInWindowFunctionExpr>
Get BuiltInWindowFunction expr of BuiltInWindowExpr
Sourcepub fn add_equal_orderings(&self, eq_properties: &mut EquivalenceProperties)
pub fn add_equal_orderings(&self, eq_properties: &mut EquivalenceProperties)
Adds any equivalent orderings generated by the self.expr
to builder
.
If self.expr
doesn’t have an ordering, ordering equivalence properties
are not updated. Otherwise, ordering equivalence properties are updated
by the ordering of self.expr
.
Trait Implementations§
Source§impl Debug for BuiltInWindowExpr
impl Debug for BuiltInWindowExpr
Source§impl WindowExpr for BuiltInWindowExpr
impl WindowExpr for BuiltInWindowExpr
Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Return a reference to Any that can be used for downcasting
Source§fn evaluate_stateful(
&self,
partition_batches: &IndexMap<Vec<ScalarValue>, PartitionBatchState>,
window_agg_state: &mut IndexMap<Vec<ScalarValue>, WindowState>,
) -> Result<(), DataFusionError>
fn evaluate_stateful( &self, partition_batches: &IndexMap<Vec<ScalarValue>, PartitionBatchState>, window_agg_state: &mut IndexMap<Vec<ScalarValue>, WindowState>, ) -> Result<(), DataFusionError>
Evaluate the window function against the batch. This function facilitates stateful, bounded-memory implementations.
Source§fn name(&self) -> &str
fn name(&self) -> &str
Human readable name such as
"MIN(c2)"
or "RANK()"
. The default
implementation returns placeholder text.Source§fn field(&self) -> Result<Field, DataFusionError>
fn field(&self) -> Result<Field, DataFusionError>
The field of the final result of this window function.
Source§fn expressions(&self) -> Vec<Arc<dyn PhysicalExpr>>
fn expressions(&self) -> Vec<Arc<dyn PhysicalExpr>>
Expressions that are passed to the WindowAccumulator.
Functions which take a single input argument, such as
sum
, return a single datafusion_expr::expr::Expr
,
others (e.g. cov
) return many.Source§fn partition_by(&self) -> &[Arc<dyn PhysicalExpr>]
fn partition_by(&self) -> &[Arc<dyn PhysicalExpr>]
Expressions that’s from the window function’s partition by clause, empty if absent
Source§fn order_by(&self) -> &[PhysicalSortExpr]
fn order_by(&self) -> &[PhysicalSortExpr]
Expressions that’s from the window function’s order by clause, empty if absent
Source§fn evaluate(
&self,
batch: &RecordBatch,
) -> Result<Arc<dyn Array>, DataFusionError>
fn evaluate( &self, batch: &RecordBatch, ) -> Result<Arc<dyn Array>, DataFusionError>
Evaluate the window function values against the batch
Source§fn get_window_frame(&self) -> &Arc<WindowFrame>
fn get_window_frame(&self) -> &Arc<WindowFrame>
Get the window frame of this WindowExpr.
Source§fn get_reverse_expr(&self) -> Option<Arc<dyn WindowExpr>>
fn get_reverse_expr(&self) -> Option<Arc<dyn WindowExpr>>
Get the reverse expression of this WindowExpr.
Source§fn uses_bounded_memory(&self) -> bool
fn uses_bounded_memory(&self) -> bool
Return a flag indicating whether this WindowExpr can run with
bounded memory.
Source§fn evaluate_args(
&self,
batch: &RecordBatch,
) -> Result<Vec<Arc<dyn Array>>, DataFusionError>
fn evaluate_args( &self, batch: &RecordBatch, ) -> Result<Vec<Arc<dyn Array>>, DataFusionError>
Evaluate the window function arguments against the batch and return
array ref, normally the resulting
Vec
is a single element one.Source§fn order_by_columns(
&self,
batch: &RecordBatch,
) -> Result<Vec<SortColumn>, DataFusionError>
fn order_by_columns( &self, batch: &RecordBatch, ) -> Result<Vec<SortColumn>, DataFusionError>
Get order by columns, empty if absent
Source§fn all_expressions(&self) -> WindowPhysicalExpressions
fn all_expressions(&self) -> WindowPhysicalExpressions
Returns all expressions used in the
WindowExpr
.
These expressions are (1) function arguments, (2) partition by expressions, (3) order by expressions.Source§fn with_new_expressions(
&self,
_args: Vec<Arc<dyn PhysicalExpr>>,
_partition_bys: Vec<Arc<dyn PhysicalExpr>>,
_order_by_exprs: Vec<Arc<dyn PhysicalExpr>>,
) -> Option<Arc<dyn WindowExpr>>
fn with_new_expressions( &self, _args: Vec<Arc<dyn PhysicalExpr>>, _partition_bys: Vec<Arc<dyn PhysicalExpr>>, _order_by_exprs: Vec<Arc<dyn PhysicalExpr>>, ) -> Option<Arc<dyn WindowExpr>>
Rewrites
WindowExpr
, with new expressions given. The argument should be consistent
with the return value of the WindowExpr::all_expressions
method.
Returns Some(Arc<dyn WindowExpr>)
if re-write is supported, otherwise returns None
.Auto Trait Implementations§
impl Freeze for BuiltInWindowExpr
impl !RefUnwindSafe for BuiltInWindowExpr
impl Send for BuiltInWindowExpr
impl Sync for BuiltInWindowExpr
impl Unpin for BuiltInWindowExpr
impl !UnwindSafe for BuiltInWindowExpr
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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