delta-io / delta-rs

A native Rust library for Delta Lake, with bindings into Python
https://delta-io.github.io/delta-rs/
Apache License 2.0
2.33k stars 410 forks source link

docs: storage_options defined but not used in "Verify Table Existence" usage example #3002

Open vksx opened 2 hours ago

vksx commented 2 hours ago

Description

In the Verify Table Existence usage example, storage_options is defined but not used as shown below:

bucket_table_path = "<path/to/valid/table/in/bucket>"
storage_options = {
    "AWS_ACCESS_KEY_ID": "THE_AWS_ACCESS_KEY_ID",
    "AWS_SECRET_ACCESS_KEY": "THE_AWS_SECRET_ACCESS_KEY",
    ...
}
DeltaTable.is_deltatable(bucket_table_path)
# True

Use Case

Related Issue(s)

vksx commented 1 hour ago

take