Helper to create a test schema
()
| 530 | |
| 531 | /// Helper to create a test schema |
| 532 | fn test_schema() -> SchemaRef { |
| 533 | Arc::new(Schema::new(vec![ |
| 534 | Field::new("id", DataType::Int64, true), |
| 535 | Field::new("name", DataType::Utf8, true), |
| 536 | ])) |
| 537 | } |
| 538 | |
| 539 | #[tokio::test] |
| 540 | async fn test_json_array_from_file() -> Result<()> { |
no test coverage detected
searching dependent graphs…