TableConfiguration

Struct TableConfiguration 

Source
pub struct TableConfiguration { /* private fields */ }
Available on crate feature internal-api only.
Expand description

Holds all the configuration for a table at a specific version. This includes the supported reader and writer features, table properties, schema, version, and table root. This can be used to check whether a table supports a feature or has it enabled. For example, deletion vector support can be checked with TableConfiguration::is_feature_supported and deletion vector write enablement can be checked with TableConfiguration::is_feature_enabled.

TableConfiguration performs checks upon construction with TableConfiguration::try_new to validate that Metadata and Protocol are correctly formatted and mutually compatible. After construction, call ensure_operation_supported to verify that the kernel supports the required operations for the table’s protocol features.

Implementations§

Source§

impl TableConfiguration

Source

pub fn try_new( metadata: Metadata, protocol: Protocol, table_root: Url, version: Version, ) -> DeltaResult<Self>

Constructs a TableConfiguration for a table located in table_root at version. This validates that the Metadata and Protocol are compatible with one another and that the kernel supports reading from this table.

Note: This only returns successfully if kernel supports reading the table. It’s important to do this validation in try_new because all table accesses must first construct the TableConfiguration. This ensures that developers never forget to check that kernel supports reading the table, and that all table accesses are legal.

Note: In the future, we will perform stricter checks on the set of reader and writer features. In particular, we will check that: - Non-legacy features must appear in both reader features and writer features lists. If such a feature is present, the reader version and writer version must be 3, and 5 respectively. - Legacy reader features occur when the reader version is 3, but the writer version is either 5 or 6. In this case, the writer feature list must be empty. - Column mapping is the only legacy feature present in kernel. No future delta versions will introduce new legacy features. See: https://github.com/delta-io/delta-kernel-rs/issues/650

Source

pub fn metadata(&self) -> &Metadata

The Metadata for this table at this version.

Source

pub fn protocol(&self) -> &Protocol

The Protocol of this table at this version.

Source

pub fn schema(&self) -> SchemaRef

The logical schema (SchemaRef) of this table at this version.

Source

pub fn table_properties(&self) -> &TableProperties

The TableProperties of this table at this version.

Source

pub fn column_mapping_mode(&self) -> ColumnMappingMode

The ColumnMappingMode for this table at this version.

Source

pub fn table_root(&self) -> &Url

The Url of the table this TableConfiguration belongs to

Source

pub fn version(&self) -> Version

The Version which this TableConfiguration belongs to.

Source

pub fn ensure_operation_supported( &self, operation: Operation, ) -> DeltaResult<()>

Returns Ok if the kernel supports the given operation on this table. This checks that the protocol’s features are all supported for the requested operation type.

  • For Scan and Cdf operations: checks reader version and reader features
  • For Write operations: checks writer version and writer features
Source

pub fn is_feature_supported(&self, feature: &TableFeature) -> bool

Generic method to check if a feature is supported in the protocol. This does NOT check if the feature is enabled via table properties.

Source

pub fn is_feature_enabled(&self, feature: &TableFeature) -> bool

Generic method to check if a feature is enabled.

A feature is enabled if:

  1. It is supported in the protocol
  2. The enablement check passes

Trait Implementations§

Source§

impl Clone for TableConfiguration

Source§

fn clone(&self) -> TableConfiguration

Returns a duplicate of the value. Read more
1.0.0§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for TableConfiguration

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl PartialEq for TableConfiguration

Source§

fn eq(&self, other: &TableConfiguration) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for TableConfiguration

Source§

impl StructuralPartialEq for TableConfiguration

Auto Trait Implementations§

Blanket Implementations§

§

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

§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> AsAny for T
where T: Any + Send + Sync,

Source§

fn any_ref(&self) -> &(dyn Any + Sync + Send + 'static)

Obtains a dyn Any reference to the object: Read more
Source§

fn as_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Obtains an Arc<dyn Any> reference to the object: Read more
Source§

fn into_any(self: Box<T>) -> Box<dyn Any + Sync + Send>

Converts the object to Box<dyn Any>: Read more
Source§

fn type_name(&self) -> &'static str

Convenient wrapper for std::any::type_name, since Any does not provide it and Any::type_id is useless as a debugging aid (its Debug is just a mess of hex digits).
§

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

§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
§

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

§

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

Mutably borrows from an owned value. Read more
§

impl<T> CloneToUninit for T
where T: Clone,

§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynPartialEq for T
where T: PartialEq + AsAny,

Source§

fn dyn_eq(&self, other: &(dyn Any + 'static)) -> bool

Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

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 Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<T> From<T> for T

§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
§

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

§

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> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
§

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

§

type Error = Infallible

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

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

Performs the conversion.
§

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

§

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

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

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

Performs the conversion.
Source§

impl<KernelType, ArrowType> TryIntoArrow<ArrowType> for KernelType
where ArrowType: TryFromKernel<KernelType>,

Source§

fn try_into_arrow(self) -> Result<ArrowType, ArrowError>

Available on (crate features default-engine-native-tls or default-engine-rustls or arrow-conversion) and crate feature arrow-conversion only.
Source§

impl<KernelType, ArrowType> TryIntoKernel<KernelType> for ArrowType
where KernelType: TryFromArrow<ArrowType>,

Source§

fn try_into_kernel(self) -> Result<KernelType, ArrowError>

Available on (crate features default-engine-native-tls or default-engine-rustls or arrow-conversion) and crate feature arrow-conversion only.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> Allocation for T
where T: RefUnwindSafe + Send + Sync,