Function deltalake::open_table_with_version

source ·
pub async fn open_table_with_version(
    table_uri: impl AsRef<str>,
    version: i64
) -> Result<DeltaTable, DeltaTableError>
Expand description

The deltalake crate is currently just a meta-package shim for deltalake-core Creates a DeltaTable from the given path and loads it with the metadata from the given version. Infers the storage backend to use from the scheme in the given table path.

Will fail fast if specified table_uri is a local path but doesn’t exist.