Skip to content

Commit

Permalink
Enable crypto_expressions feature for datafusion-functions (#713)
Browse files Browse the repository at this point in the history
  • Loading branch information
mwylde authored Aug 9, 2024
1 parent c072ef8 commit 964c40c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ ahash = { version = "=0.8.7" }
datafusion = { version = "40.0.0" }
datafusion-common = { version = "40.0.0" }
datafusion-proto = { version = "40.0.0" }
datafusion-functions = { version = "40.0.0" }
datafusion-functions = { version = "40.0.0", features = ["crypto_expressions"] }
deltalake = { version = "0.18.2" }
cornucopia = { version = "0.9.0" }
cornucopia_async = {version = "0.6.0"}
Expand Down
7 changes: 7 additions & 0 deletions crates/arroyo-planner/src/test/queries/crypto_function.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
create table impulse with (
connector = 'impulse',
event_rate = '10'
);

select sha256(cast(counter as TEXT))
from impulse;

0 comments on commit 964c40c

Please sign in to comment.