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
I found this when I was trying to use delta-rs to manually write parquet files to delta (so I don't need datafusion).
When creating a table, the minwriter-version will be 2. So in ProtocolChecker, it will look for 'invariant' in writer_features.
But it is only added when datafusion is enabled:
delta-rs/crates/core/src/operations/transaction/protocol.rs
Line 254 in 2498837
So effectively, if datafusion is not enabled, delta-rs won't be able to do any write.
The text was updated successfully, but these errors were encountered:
Datafusion is simply a requirement to parse invariants and execute them.
Please look at this comment for what you want: #2204 (comment)
Sorry, something went wrong.
No branches or pull requests
I found this when I was trying to use delta-rs to manually write parquet files to delta (so I don't need datafusion).
When creating a table, the minwriter-version will be 2.
So in ProtocolChecker, it will look for 'invariant' in writer_features.
But it is only added when datafusion is enabled:
delta-rs/crates/core/src/operations/transaction/protocol.rs
Line 254 in 2498837
So effectively, if datafusion is not enabled, delta-rs won't be able to do any write.
The text was updated successfully, but these errors were encountered: