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
WSL2 Ubuntu Delta-rs version: python deltalake==0.16.3 Binding:
Environment:
What happened: write_deltalake with schema provided, and [] as data input, it can work with pyarrow engine. but it failed with rust.
write_deltalake( "./test", [], schema=Schema(fields=fields), )
_internal.DeltaError: Generic error: No data source supplied to write command. What you expected to happen:
How to reproduce it:
from deltalake import write_deltalake, DeltaTable from deltalake.schema import Schema, Field, PrimitiveType write_deltalake( "./test", [], schema=Schema(fields=[Field.from_json('''{ "name": "col", "type": "integer", "nullable": true, "metadata": {} }''')]), engine="rust" )
More details:
The text was updated successfully, but these errors were encountered:
You can create a table using the DeltaTable.create API. https://delta-io.github.io/delta-rs/api/delta_table/#deltalake.DeltaTable.create
Sorry, something went wrong.
Yea, I found that just now and it worked.
Alright, closing this one then : )
write_deltalake
rust
No branches or pull requests
Environment
WSL2 Ubuntu
Delta-rs version:
python deltalake==0.16.3
Binding:
Environment:
Bug
What happened:
write_deltalake with schema provided, and [] as data input, it can work with pyarrow engine. but it failed with rust.
_internal.DeltaError: Generic error: No data source supplied to write command.
What you expected to happen:
How to reproduce it:
More details:
The text was updated successfully, but these errors were encountered: