()
| 1108 | } |
| 1109 | |
| 1110 | fn test_schema() -> TableSchema { |
| 1111 | use crate::spec::{DataType, IntType, Schema, VarCharType}; |
| 1112 | let schema = Schema::builder() |
| 1113 | .column("id", DataType::Int(IntType::new())) |
| 1114 | .column("name", DataType::VarChar(VarCharType::string_type())) |
| 1115 | .build() |
| 1116 | .unwrap(); |
| 1117 | TableSchema::new(0, &schema) |
| 1118 | } |
| 1119 | |
| 1120 | fn test_partitioned_schema() -> TableSchema { |
| 1121 | use crate::spec::{DataType, IntType, Schema, VarCharType}; |
no test coverage detected