Function deltalake::open_table_with_storage_options

source ·
pub async fn open_table_with_storage_options(
    table_uri: impl AsRef<str>,
    storage_options: HashMap<String, String>
) -> Result<DeltaTable, DeltaTableError>
Expand description

The deltalake crate is currently just a meta-package shim for deltalake-core Same as open_table, but also accepts storage options to aid in building the table for a deduced StorageService.

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