Skip to content

Commit 6db6b4d

Browse files
committed
fix: sabor de multihilo
1 parent 55dff3b commit 6db6b4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

host/tests/integration_tests/udf_query.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use datafusion_udf_wasm_host::udf_query::{UdfQuery, UdfQueryInvocator};
33

44
use crate::integration_tests::python::test_utils::python_component;
55

6-
#[tokio::test]
6+
#[tokio::test(flavor = "multi_thread")]
77
async fn test_simple_udf_query() {
88
let query = r#"
99
CREATE FUNCTION add_one()
@@ -30,7 +30,7 @@ SELECT add_one(1);
3030
assert_eq!(result[0][0], "2");
3131
}
3232

33-
#[tokio::test]
33+
#[tokio::test(flavor = "multi_thread")]
3434
async fn test_multiple_functions() {
3535
let query = r#"
3636
CREATE FUNCTION add_one()

0 commit comments

Comments
 (0)