pub struct CurrentDateFunc { /* private fields */ }
Implementations§
Trait Implementations§
source§impl Debug for CurrentDateFunc
impl Debug for CurrentDateFunc
source§impl Default for CurrentDateFunc
impl Default for CurrentDateFunc
source§impl ScalarUDFImpl for CurrentDateFunc
impl ScalarUDFImpl for CurrentDateFunc
Create an implementation of current_date()
that always returns the
specified current date.
The semantics of current_date()
require it to return the same value
wherever it appears within a single statement. This value is
chosen during planning time.
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 invoke(&self, _args: &[ColumnarValue]) -> Result<ColumnarValue>
fn invoke(&self, _args: &[ColumnarValue]) -> Result<ColumnarValue>
Invoke the function on
args
, returning the appropriate result Read moresource§fn aliases(&self) -> &[String]
fn aliases(&self) -> &[String]
Returns any aliases (alternate names) for this function. Read more
source§fn simplify(
&self,
_args: Vec<Expr>,
info: &dyn SimplifyInfo
) -> Result<ExprSimplifyResult>
fn simplify( &self, _args: Vec<Expr>, info: &dyn SimplifyInfo ) -> Result<ExprSimplifyResult>
Optionally apply per-UDF simplification / rewrite rules. Read more
source§fn return_type_from_exprs(
&self,
_args: &[Expr],
_schema: &dyn ExprSchema,
arg_types: &[DataType]
) -> Result<DataType, DataFusionError>
fn return_type_from_exprs( &self, _args: &[Expr], _schema: &dyn ExprSchema, arg_types: &[DataType] ) -> Result<DataType, DataFusionError>
source§fn invoke_no_args(
&self,
_number_rows: usize
) -> Result<ColumnarValue, DataFusionError>
fn invoke_no_args( &self, _number_rows: usize ) -> Result<ColumnarValue, DataFusionError>
Invoke the function without
args
, instead the number of rows are provided,
returning the appropriate result.source§fn monotonicity(&self) -> Result<Option<Vec<Option<bool>>>, DataFusionError>
fn monotonicity(&self) -> Result<Option<Vec<Option<bool>>>, DataFusionError>
This function specifies monotonicity behaviors for User defined scalar functions.
source§fn short_circuits(&self) -> bool
fn short_circuits(&self) -> bool
Returns true if some of this
exprs
subexpressions may not be evaluated
and thus any side effects (like divide by zero) may not be encountered
Setting this to true prevents certain optimizations such as common subexpression eliminationAuto Trait Implementations§
impl Freeze for CurrentDateFunc
impl RefUnwindSafe for CurrentDateFunc
impl Send for CurrentDateFunc
impl Sync for CurrentDateFunc
impl Unpin for CurrentDateFunc
impl UnwindSafe for CurrentDateFunc
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