File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -12,18 +12,18 @@ rust-version = "1.86.0"
1212
1313[dependencies ]
1414datafusion = { 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 "
1818paste = " 1"
1919
2020[dev-dependencies ]
21- codspeed-criterion-compat = " 2.6 "
21+ codspeed-criterion-compat = " 3.0.5 "
2222datafusion = { 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 ]
2929dbg_macro = " deny"
Original file line number Diff line number Diff 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 ) ]
1818pub ( super ) struct JsonExtract {
1919 signature : Signature ,
2020 aliases : [ String ; 1 ] ,
Original file line number Diff line number Diff 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 ) ]
2222pub ( super ) struct JsonExtractScalar {
2323 signature : Signature ,
2424 aliases : [ String ; 1 ] ,
Original file line number Diff line number Diff 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 ) ]
2121pub ( super ) struct JsonFormat {
2222 signature : Signature ,
2323 aliases : [ String ; 1 ] ,
Original file line number Diff line number Diff 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 ) ]
2121pub ( super ) struct JsonParse {
2222 signature : Signature ,
2323 aliases : [ String ; 1 ] ,
You can’t perform that action at this time.
0 commit comments