Re: [I] Can't publish datafusion-spark crate due to error [datafusion]
comphead closed issue #16383: Can't publish datafusion-spark crate due to error URL: https://github.com/apache/datafusion/issues/16383 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] - To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
Re: [I] Can't publish datafusion-spark crate due to error [datafusion]
alamb commented on issue #16383: URL: https://github.com/apache/datafusion/issues/16383#issuecomment-2967050602 🎉 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] - To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
Re: [I] Can't publish datafusion-spark crate due to error [datafusion]
alamb closed issue #16383: Can't publish datafusion-spark crate due to error URL: https://github.com/apache/datafusion/issues/16383 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] - To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
Re: [I] Can't publish datafusion-spark crate due to error [datafusion]
xudong963 commented on issue #16383: URL: https://github.com/apache/datafusion/issues/16383#issuecomment-2967031389 Nice, just published datafusion-sqllogictest by fixing the files locally -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] - To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
Re: [I] Can't publish datafusion-spark crate due to error [datafusion]
alamb commented on issue #16383: URL: https://github.com/apache/datafusion/issues/16383#issuecomment-2966455712 I manually updated the cargo file (applied the patch above) and ran `cargo publish` to get this to publish at 48.0.0: - https://crates.io/crates/datafusion-spark/48.0.0 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] - To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
Re: [I] Can't publish datafusion-spark crate due to error [datafusion]
alamb commented on issue #16383:
URL: https://github.com/apache/datafusion/issues/16383#issuecomment-2964988514
I found I could fix the compilation error by applying this patch
```diff
diff --git a/datafusion/spark/Cargo.toml b/datafusion/spark/Cargo.toml
index 1ded8c40a..caebcbd2e 100644
--- a/datafusion/spark/Cargo.toml
+++ b/datafusion/spark/Cargo.toml
@@ -41,6 +41,6 @@ datafusion-catalog = { workspace = true }
datafusion-common = { workspace = true }
datafusion-execution = { workspace = true }
datafusion-expr = { workspace = true }
-datafusion-functions = { workspace = true }
+datafusion-functions = { workspace = true , features =
["crypto_expressions"]}
datafusion-macros = { workspace = true }
log = { workspace = true }
diff --git a/datafusion/spark/src/lib.rs b/datafusion/spark/src/lib.rs
index 1fe5b6eca..04e2038b1 100644
--- a/datafusion/spark/src/lib.rs
+++ b/datafusion/spark/src/lib.rs
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
-
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
Re: [I] Can't publish datafusion-spark crate due to error [datafusion]
xudong963 commented on issue #16383: URL: https://github.com/apache/datafusion/issues/16383#issuecomment-2965317151 After this is fixed, we can publish sqllogictest, because it depends on spark ♾ ``` cd datafusion/sqllogictest && cargo publish --allow-dirty Updating crates.io index Packaging datafusion-sqllogictest v48.0.0 (/Users/xudong/opensource/datafusion/datafusion/sqllogictest) Updating crates.io index error: failed to prepare local package for uploading Caused by: no matching package named `datafusion-spark` found location searched: crates.io index required by package `datafusion-sqllogictest v48.0.0 (/Users/xudong/opensource/datafusion/datafusion/sqllogictest)` ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] - To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
Re: [I] Can't publish datafusion-spark crate due to error [datafusion]
alamb commented on issue #16383: URL: https://github.com/apache/datafusion/issues/16383#issuecomment-2965049836 I have a PR to fix it here (found while writing tests): - https://github.com/apache/datafusion/pull/16384 -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] - To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
