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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
The last example in README says:
ddt.to_deltalake(df, "s3://bucket_name/delta_path")
However, this does not seem compatible with the latest version of dask-deltatable. It should be instead:
ddt.to_deltalake("s3://bucket_name/delta_path", df)
or to keep the initial order of arguments:
ddt.to_deltalake(df=df, table_or_uri="s3://bucket_name/delta_path")
The text was updated successfully, but these errors were encountered:
You're right, I ran into this the other day too. Do you have any interest in opening a PR to fix this?
Sorry, something went wrong.
Happy too. First time that I make one though, so please bear with me.
Successfully merging a pull request may close this issue.
The last example in README says:
ddt.to_deltalake(df, "s3://bucket_name/delta_path")
However, this does not seem compatible with the latest version of dask-deltatable. It should be instead:
ddt.to_deltalake("s3://bucket_name/delta_path", df)
or to keep the initial order of arguments:
ddt.to_deltalake(df=df, table_or_uri="s3://bucket_name/delta_path")
The text was updated successfully, but these errors were encountered: