()
| 716 | } |
| 717 | |
| 718 | fn test_schema() -> TableSchema { |
| 719 | let schema = Schema::builder() |
| 720 | .column("id", DataType::Int(IntType::new())) |
| 721 | .column("value", DataType::Int(IntType::new())) |
| 722 | .build() |
| 723 | .unwrap(); |
| 724 | TableSchema::new(0, &schema) |
| 725 | } |
| 726 | |
| 727 | fn test_partitioned_schema() -> TableSchema { |
| 728 | let schema = Schema::builder() |
no test coverage detected