Skip to content

Commit f5c4144

Browse files
committed
fix more
1 parent 5c4d046 commit f5c4144

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0"
88
keywords = ["datafusion", "JSON", "SQL"]
99
categories = ["database-implementations", "parsing"]
1010
repository = "https://github.com/datafusion-contrib/datafusion-functions-json/"
11-
rust-version = "1.85.1"
11+
rust-version = "1.86.0"
1212

1313
[dependencies]
1414
datafusion = { version = "50", default-features = false }

benches/main.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff 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
});

0 commit comments

Comments
 (0)