Struct datafusion_functions::core::arrow_cast::ArrowCastFunc
source · pub struct ArrowCastFunc { /* private fields */ }
Expand description
Implements casting to arbitrary arrow types (rather than SQL types)
Note that the arrow_cast
function is somewhat special in that its
return depends only on the value of its second argument (not its type)
It is implemented by calling the same underlying arrow cast
kernel as
normal SQL casts.
For example to cast to int
using SQL (which is then mapped to the arrow
type Int32
)
select cast(column_x as int) ...
Use the arrow_cast
function to cast to a specific arrow type
For example
select arrow_cast(column_x, 'Float64')
Implementations§
source§impl ArrowCastFunc
impl ArrowCastFunc
Trait Implementations§
source§impl Debug for ArrowCastFunc
impl Debug for ArrowCastFunc
source§impl Default for ArrowCastFunc
impl Default for ArrowCastFunc
source§impl ScalarUDFImpl for ArrowCastFunc
impl ScalarUDFImpl for ArrowCastFunc
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_from_exprs(
&self,
args: &[Expr],
_schema: &dyn ExprSchema,
_arg_types: &[DataType],
) -> Result<DataType>
fn return_type_from_exprs( &self, args: &[Expr], _schema: &dyn ExprSchema, _arg_types: &[DataType], ) -> Result<DataType>
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 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 display_name(&self, args: &[Expr]) -> Result<String, DataFusionError>
fn display_name(&self, args: &[Expr]) -> Result<String, DataFusionError>
Returns the user-defined display name of the UDF given the arguments
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 aliases(&self) -> &[String]
fn aliases(&self) -> &[String]
Returns any aliases (alternate names) for this function. Read more
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 eliminationsource§fn evaluate_bounds(
&self,
_input: &[&Interval],
) -> Result<Interval, DataFusionError>
fn evaluate_bounds( &self, _input: &[&Interval], ) -> Result<Interval, DataFusionError>
Computes the output interval for a
ScalarUDFImpl
, given the input
intervals. Read moresource§fn propagate_constraints(
&self,
_interval: &Interval,
_inputs: &[&Interval],
) -> Result<Option<Vec<Interval>>, DataFusionError>
fn propagate_constraints( &self, _interval: &Interval, _inputs: &[&Interval], ) -> Result<Option<Vec<Interval>>, DataFusionError>
Updates bounds for child expressions, given a known interval for this
function. This is used to propagate constraints down through an expression
tree. Read more
source§fn output_ordering(
&self,
_inputs: &[ExprProperties],
) -> Result<SortProperties, DataFusionError>
fn output_ordering( &self, _inputs: &[ExprProperties], ) -> Result<SortProperties, DataFusionError>
Calculates the
SortProperties
of this function based on its
children’s properties.source§fn coerce_types(
&self,
_arg_types: &[DataType],
) -> Result<Vec<DataType>, DataFusionError>
fn coerce_types( &self, _arg_types: &[DataType], ) -> Result<Vec<DataType>, DataFusionError>
Coerce arguments of a function call to types that the function can evaluate. Read more
source§fn equals(&self, other: &dyn ScalarUDFImpl) -> bool
fn equals(&self, other: &dyn ScalarUDFImpl) -> bool
Return true if this scalar 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 scalar UDF. Read more
Auto Trait Implementations§
impl Freeze for ArrowCastFunc
impl RefUnwindSafe for ArrowCastFunc
impl Send for ArrowCastFunc
impl Sync for ArrowCastFunc
impl Unpin for ArrowCastFunc
impl UnwindSafe for ArrowCastFunc
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