We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
load_cdf
Delta-rs version: latest on main
Binding: python
What happened: When you try to read latest version with load_cdf it fails.
What you expected to happen: Be able to read the latest version, if you read latest -1 only it works fine.
How to reproduce it:
from deltalake import DeltaTable import polars as pl pl.DataFrame({"foo":[1,2,3]}).write_delta( "foo_table", mode='append', delta_write_options = {"configuration": {"delta.enableChangeDataFeed": "true"}} ) DeltaTable("foo_table").load_cdf(starting_version=0, ending_version=0, allow_out_of_range=False).read_all()
DeltaError: Invalid table version: 0
@hntd187 can you look into this?
The text was updated successfully, but these errors were encountered:
Reading the last two versions works fine as well, but exclusively reading the last version doesn't work
Sorry, something went wrong.
No branches or pull requests
Environment
Delta-rs version: latest on main
Binding: python
Bug
What happened:
When you try to read latest version with load_cdf it fails.
What you expected to happen:
Be able to read the latest version, if you read latest -1 only it works fine.
How to reproduce it:
DeltaError: Invalid table version: 0
@hntd187 can you look into this?
The text was updated successfully, but these errors were encountered: