Closed
Description
Environment
Delta-rs version: 0.15.1
Binding:
Environment:
- Cloud provider: GCP
- OS: Debian Bullseye
- Other:
Bug
What happened:
I am unable to read/write tables with the "gs" scheme on version 0.15.1. This has historically worked in previous major versions.
What you expected to happen:
How to reproduce it:
Reading a table with "gs" prefix works on version 0.14.0:
import deltalake
print(deltalake.__version__)
dt = deltalake.DeltaTable("gs://path/to/table", storage_options=analytics.storage_options)
Last executed at 2024-01-09 05:57:31 in 336ms
0.14.0
But it fails on 0.15.1:
import deltalake
print(deltalake.__version__)
dt = deltalake.DeltaTable("gs://path/to/table", storage_options=analytics.storage_options)
Last executed at 2024-01-09 05:57:31 in 336ms
0.15.1
PanicException: The specified table_uri is not valid: InvalidTableLocation("Unknown scheme: gs")
More details:
Activity