Struct datafusion_physical_plan::expressions::BinaryExpr
source · pub struct BinaryExpr { /* private fields */ }
Expand description
Binary expression
Implementations§
source§impl BinaryExpr
impl BinaryExpr
sourcepub fn new(
left: Arc<dyn PhysicalExpr>,
op: Operator,
right: Arc<dyn PhysicalExpr>,
) -> BinaryExpr
pub fn new( left: Arc<dyn PhysicalExpr>, op: Operator, right: Arc<dyn PhysicalExpr>, ) -> BinaryExpr
Create new binary expression
sourcepub fn with_fail_on_overflow(self, fail_on_overflow: bool) -> BinaryExpr
pub fn with_fail_on_overflow(self, fail_on_overflow: bool) -> BinaryExpr
Create new binary expression with explicit fail_on_overflow value
sourcepub fn left(&self) -> &Arc<dyn PhysicalExpr>
pub fn left(&self) -> &Arc<dyn PhysicalExpr>
Get the left side of the binary expression
sourcepub fn right(&self) -> &Arc<dyn PhysicalExpr>
pub fn right(&self) -> &Arc<dyn PhysicalExpr>
Get the right side of the binary expression
Trait Implementations§
source§impl Clone for BinaryExpr
impl Clone for BinaryExpr
source§fn clone(&self) -> BinaryExpr
fn clone(&self) -> BinaryExpr
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for BinaryExpr
impl Debug for BinaryExpr
source§impl Display for BinaryExpr
impl Display for BinaryExpr
source§impl Hash for BinaryExpr
impl Hash for BinaryExpr
source§impl PartialEq<dyn Any> for BinaryExpr
impl PartialEq<dyn Any> for BinaryExpr
source§impl PhysicalExpr for BinaryExpr
impl PhysicalExpr for BinaryExpr
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 get_properties(
&self,
children: &[ExprProperties],
) -> Result<ExprProperties, DataFusionError>
fn get_properties( &self, children: &[ExprProperties], ) -> Result<ExprProperties, DataFusionError>
For each operator, BinaryExpr
has distinct rules.
TODO: There may be rules specific to some data types and expression ranges.
source§fn data_type(&self, input_schema: &Schema) -> Result<DataType, DataFusionError>
fn data_type(&self, input_schema: &Schema) -> Result<DataType, DataFusionError>
Get the data type of this expression, given the schema of the input
source§fn nullable(&self, input_schema: &Schema) -> Result<bool, DataFusionError>
fn nullable(&self, input_schema: &Schema) -> Result<bool, DataFusionError>
Determine whether this expression is nullable, given the schema of the input
source§fn evaluate(
&self,
batch: &RecordBatch,
) -> Result<ColumnarValue, DataFusionError>
fn evaluate( &self, batch: &RecordBatch, ) -> Result<ColumnarValue, DataFusionError>
Evaluate an expression against a RecordBatch
source§fn children(&self) -> Vec<&Arc<dyn PhysicalExpr>>
fn children(&self) -> Vec<&Arc<dyn PhysicalExpr>>
Get a list of child PhysicalExpr that provide the input for this expr.
source§fn with_new_children(
self: Arc<BinaryExpr>,
children: Vec<Arc<dyn PhysicalExpr>>,
) -> Result<Arc<dyn PhysicalExpr>, DataFusionError>
fn with_new_children( self: Arc<BinaryExpr>, children: Vec<Arc<dyn PhysicalExpr>>, ) -> Result<Arc<dyn PhysicalExpr>, DataFusionError>
Returns a new PhysicalExpr where all children were replaced by new exprs.
source§fn evaluate_bounds(
&self,
children: &[&Interval],
) -> Result<Interval, DataFusionError>
fn evaluate_bounds( &self, children: &[&Interval], ) -> Result<Interval, DataFusionError>
Computes the output interval for the expression, given the input
intervals. Read more
source§fn propagate_constraints(
&self,
interval: &Interval,
children: &[&Interval],
) -> Result<Option<Vec<Interval>>, DataFusionError>
fn propagate_constraints( &self, interval: &Interval, children: &[&Interval], ) -> Result<Option<Vec<Interval>>, DataFusionError>
Updates bounds for child expressions, given a known interval for this
expression. Read more
source§fn evaluate_selection(
&self,
batch: &RecordBatch,
selection: &BooleanArray,
) -> Result<ColumnarValue, DataFusionError>
fn evaluate_selection( &self, batch: &RecordBatch, selection: &BooleanArray, ) -> Result<ColumnarValue, DataFusionError>
Evaluate an expression against a RecordBatch after first applying a
validity array
Auto Trait Implementations§
impl Freeze for BinaryExpr
impl !RefUnwindSafe for BinaryExpr
impl Send for BinaryExpr
impl Sync for BinaryExpr
impl Unpin for BinaryExpr
impl !UnwindSafe for BinaryExpr
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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