We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94c5fb7 commit 2778b1cCopy full SHA for 2778b1c
2 files changed
Cargo.toml
@@ -8,7 +8,7 @@ license = "Apache-2.0"
8
keywords = ["datafusion", "JSON", "SQL"]
9
categories = ["database-implementations", "parsing"]
10
repository = "https://github.com/datafusion-contrib/datafusion-functions-json/"
11
-rust-version = "1.82.0"
+rust-version = "1.85.1"
12
13
[dependencies]
14
datafusion = { version = "48", default-features = false }
tests/utils/mod.rs
@@ -63,7 +63,7 @@ async fn create_test_table(json_data_type: &DataType) -> Result<SessionContext>
63
Arc::new(LargeStringArray::from_iter_values(json_values)),
64
))
65
}
66
- _ => panic!("Unsupported JSON data type: {}", json_data_type),
+ _ => panic!("Unsupported JSON data type: {json_data_type}"),
67
};
68
69
let test_batch = RecordBatch::try_new(
0 commit comments