Trait datafusion_common::SchemaExt
source · pub trait SchemaExt {
// Required method
fn equivalent_names_and_types(&self, other: &Self) -> bool;
}
Expand description
DataFusion-specific extensions to [Schema
].
Required Methods§
sourcefn equivalent_names_and_types(&self, other: &Self) -> bool
fn equivalent_names_and_types(&self, other: &Self) -> bool
This is a specialized version of Eq that ignores differences in nullability and metadata.
It works the same as DFSchema::equivalent_names_and_types
.