()
| 37 | use insta::assert_snapshot; |
| 38 | |
| 39 | fn test_schema() -> SchemaRef { |
| 40 | Arc::new(Schema::new(vec![ |
| 41 | Field::new("a", DataType::Utf8, false), |
| 42 | Field::new("b", DataType::Int32, false), |
| 43 | Field::new("l", DataType::new_list(DataType::Int32, true), true), |
| 44 | ])) |
| 45 | } |
| 46 | |
| 47 | async fn create_test_table() -> Result<DataFrame> { |
| 48 | let schema = test_schema(); |
no test coverage detected
searching dependent graphs…