Struct datafusion_expr::logical_plan::Unnest
source · pub struct Unnest {
pub input: Arc<LogicalPlan>,
pub column: Column,
pub schema: DFSchemaRef,
}Expand description
Unnest a column that contains a nested list type.
Fields§
§input: Arc<LogicalPlan>The incoming logical plan
column: ColumnThe column to unnest
schema: DFSchemaRefThe output schema, containing the unnested field column.
Trait Implementations§
source§impl PartialEq<Unnest> for Unnest
impl PartialEq<Unnest> for Unnest
impl Eq for Unnest
impl StructuralEq for Unnest
impl StructuralPartialEq for Unnest
Auto Trait Implementations§
impl !RefUnwindSafe for Unnest
impl Send for Unnest
impl Sync for Unnest
impl Unpin for Unnest
impl !UnwindSafe for Unnest
Blanket Implementations§
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.