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: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org