Skip to content

Commit 5aa37fc

Browse files
author
Fantayeneh Asres Gizaw
committed
fix sync issues
1 parent 53692b5 commit 5aa37fc

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,18 @@ rust-version = "1.86.0"
1212

1313
[dependencies]
1414
datafusion = { version = "50", default-features = false }
15-
jiter = "0.10"
16-
log = "0.4"
17-
jsonpath-rust = "1.0.0"
15+
jiter = "0.11.0"
16+
log = { version = "0.4" }
17+
jsonpath-rust = "1.0.4"
1818
paste = "1"
1919

2020
[dev-dependencies]
21-
codspeed-criterion-compat = "2.6"
21+
codspeed-criterion-compat = "3.0.5"
2222
datafusion = { version = "50", default-features = false, features = [
2323
"nested_expressions",
2424
] }
25-
tokio = { version = "1.43", features = ["full"] }
26-
rstest = "0.25.0"
25+
tokio = { version = "1.47.1", features = ["full"] }
26+
rstest = "0.26.1"
2727

2828
[lints.clippy]
2929
dbg_macro = "deny"

src/json_extract.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ make_udf_function!(
1414
r#"Get a value from a JSON string by its "path" in JSONPath format"#
1515
);
1616

17-
#[derive(Debug)]
17+
#[derive(Debug, PartialEq, Eq, Hash)]
1818
pub(super) struct JsonExtract {
1919
signature: Signature,
2020
aliases: [String; 1],

src/json_extract_scalar.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ make_udf_function!(
1818
r#"Get a value from a JSON string by its "path""#
1919
);
2020

21-
#[derive(Debug)]
21+
#[derive(Debug, PartialEq, Eq, Hash)]
2222
pub(super) struct JsonExtractScalar {
2323
signature: Signature,
2424
aliases: [String; 1],

src/json_format.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ make_udf_function!(
1717
r#"Get any value from a JSON string by its "path", represented as a string"#
1818
);
1919

20-
#[derive(Debug)]
20+
#[derive(Debug, PartialEq, Eq, Hash)]
2121
pub(super) struct JsonFormat {
2222
signature: Signature,
2323
aliases: [String; 1],

src/json_parse.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ make_udf_function!(
1717
r#"Parses the JSON string passed"#
1818
);
1919

20-
#[derive(Debug)]
20+
#[derive(Debug, PartialEq, Eq, Hash)]
2121
pub(super) struct JsonParse {
2222
signature: Signature,
2323
aliases: [String; 1],

0 commit comments

Comments
 (0)