Skip to content

Commit

Permalink
upgrade arrow-udf to 0.5
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Chien <[email protected]>
  • Loading branch information
stdrc committed Oct 11, 2024
1 parent b01906e commit 8a12c1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion e2e_test/udf/wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
crate-type = ["cdylib"]

[dependencies]
arrow-udf = "0.4"
arrow-udf = "0.5"
genawaiter = "0.99"
rust_decimal = "1"
serde_json = "1"
2 changes: 1 addition & 1 deletion src/expr/impl/src/udf/wasm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ fn create_rust(opts: CreateFunctionOptions<'_>) -> Result<CreateFunctionOutput>

let wasm_binary = std::thread::spawn(move || {
let mut opts = arrow_udf_wasm::build::BuildOpts::default();
opts.arrow_udf_version = Some("0.3".to_string());
opts.arrow_udf_version = Some("0.5".to_string());
opts.script = script;
// use a fixed tempdir to reuse the build cache
opts.tempdir = Some(std::env::temp_dir().join("risingwave-rust-udf"));
Expand Down

0 comments on commit 8a12c1a

Please sign in to comment.