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
1.99k stars 362 forks source link

Windows path containing spaces, reading DeltaTable not possible, %20 issue, blocking to use, not able to read #2425

Open JvdH-NL opened 2 months ago

JvdH-NL commented 2 months ago

Environment


Bug

_from deltalake import DeltaTable, write_deltalake import pandas as pd

write some data into a delta table

df = pd.DataFrame({"id": [1, 2], "value": ["foo", "boo"]}) write_deltalake("./data/delta", df)

Load data from the delta table

dt = DeltaTable("./data/delta") df2 = dt.to_pandas()

assert df.equals(df2)

JvdH-NL commented 2 months ago

Validated (yesterday) with 0.17.1 release, still an issue.

JvdH-NL commented 2 months ago

Validated (06-05-2024) with 0.17.3 release, still an issue.