You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When partition values contain an escape character (example: letter=%2F%2520%25f), deltalake returns incorrect file_uris - they seem to have an additional level of urlencoding.
What you expected to happen:
file_uris to return uris that correspond to actual file names.
Environment
Delta-rs version: 0.10.0
Binding: Python
Environment:
Bug
What happened:
When partition values contain an escape character (example:
letter=%2F%2520%25f
),deltalake
returns incorrectfile_uris
- they seem to have an additional level of urlencoding.What you expected to happen:
file_uris
to return uris that correspond to actual file names.How to reproduce it:
wget https://github.com/delta-incubator/dat/releases/download/v0.0.2/deltalake-dat-v0.0.2.tar.gz
file_uris
:The actual paths do not correspond to returned urls:
Actual path:
letter=%2F%2520%25f
Returned by
delta-rs
:letter=%252F%252520%2525f
More details:
The text was updated successfully, but these errors were encountered: