Skip to content

Commit 2778b1c

Browse files
committed
fixup
1 parent 94c5fb7 commit 2778b1c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
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.82.0"
11+
rust-version = "1.85.1"
1212

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

tests/utils/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async fn create_test_table(json_data_type: &DataType) -> Result<SessionContext>
6363
Arc::new(LargeStringArray::from_iter_values(json_values)),
6464
))
6565
}
66-
_ => panic!("Unsupported JSON data type: {}", json_data_type),
66+
_ => panic!("Unsupported JSON data type: {json_data_type}"),
6767
};
6868

6969
let test_batch = RecordBatch::try_new(

0 commit comments

Comments
 (0)