File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ license = "Apache-2.0"
88keywords = [" datafusion" , " JSON" , " SQL" ]
99categories = [" database-implementations" , " parsing" ]
1010repository = " https://github.com/datafusion-contrib/datafusion-functions-json/"
11- rust-version = " 1.85.1 "
11+ rust-version = " 1.86.0 "
1212
1313[dependencies ]
1414datafusion = { version = " 50" , default-features = false }
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ fn bench_json_contains(b: &mut Bencher) {
3333 number_rows : 1 ,
3434 arg_fields : arg_fields. clone ( ) ,
3535 return_field : return_field. clone ( ) ,
36+ config_options : Arc :: new ( datafusion:: config:: ConfigOptions :: default ( ) ) ,
3637 } )
3738 . unwrap ( )
3839 } ) ;
@@ -63,6 +64,7 @@ fn bench_json_get_str_scalar(b: &mut Bencher) {
6364 arg_fields : arg_fields. clone ( ) ,
6465 number_rows : 1 ,
6566 return_field : return_field. clone ( ) ,
67+ config_options : Arc :: new ( datafusion:: config:: ConfigOptions :: default ( ) ) ,
6668 } )
6769 . unwrap ( ) ;
6870 } ) ;
@@ -94,6 +96,7 @@ fn bench_json_get_str_array(b: &mut Bencher) {
9496 arg_fields : arg_fields. clone ( ) ,
9597 number_rows : 1 ,
9698 return_field : return_field. clone ( ) ,
99+ config_options : Arc :: new ( datafusion:: config:: ConfigOptions :: default ( ) ) ,
97100 } )
98101 . unwrap ( ) ;
99102 } ) ;
@@ -125,6 +128,7 @@ fn bench_json_get_str_view_array(b: &mut Bencher) {
125128 arg_fields : arg_fields. clone ( ) ,
126129 number_rows : 1 ,
127130 return_field : return_field. clone ( ) ,
131+ config_options : Arc :: new ( datafusion:: config:: ConfigOptions :: default ( ) ) ,
128132 } )
129133 . unwrap ( ) ;
130134 } ) ;
You can’t perform that action at this time.
0 commit comments