Skip to main content

PhysicalExprDecodeCtx

Struct PhysicalExprDecodeCtx 

Source
pub struct PhysicalExprDecodeCtx<'a> { /* private fields */ }
Available on crate feature proto only.
Expand description

Decoder context handed to per-expression try_from_proto constructors.

Wraps an internal PhysicalExprDecode trait object plus a borrowed schema. The trait stays an implementation detail of datafusion-proto; expression authors only see this struct.

Implementations§

Source§

impl<'a> PhysicalExprDecodeCtx<'a>

Source

pub fn new(schema: &'a Schema, decoder: &'a dyn PhysicalExprDecode) -> Self

Construct a new decode context. Typically called by datafusion-proto; expression authors receive &PhysicalExprDecodeCtx.

Source

pub fn schema(&self) -> &Schema

The schema bound to this decode context. Use it for column lookups, data-type resolution, etc.

Source

pub fn decode(&self, node: &PhysicalExprNode) -> Result<Arc<dyn PhysicalExpr>>

Decode an expression node, recursing into child sub-expressions.

Routes built-in ExprType variants through datafusion-proto’s central match and forwards extension nodes to the registered codec (today via PhysicalExtensionCodec::try_decode_expr; later via a per-type registry — see #21835).

Source

pub fn decode_required_expression( &self, node: Option<&PhysicalExprNode>, expr_name: &str, field: &str, ) -> Result<Arc<dyn PhysicalExpr>>

Decode a required child node, erroring if it is absent.

Proto child expressions are encoded as Option<Box<PhysicalExprNode>>; pass the field directly (e.g. node.expr.as_deref()). expr_name is the expression being decoded (e.g. "InListExpr") and field the proto field (e.g. "expr"); both are woven into the error so it names where the missing field is, without each author hand-rolling the string.

Source

pub fn decode_children_expressions<'b, I>( &self, nodes: I, ) -> Result<Vec<Arc<dyn PhysicalExpr>>>
where I: IntoIterator<Item = &'b PhysicalExprNode>,

Decode a sequence of child nodes, preserving order.

Convenience wrapper over Self::decode for expressions holding a repeated proto field (e.g. the list of an InList). The first decode error short-circuits.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.