()
| 755 | } |
| 756 | |
| 757 | fn test_blob_table_schema() -> TableSchema { |
| 758 | let schema = Schema::builder() |
| 759 | .column("id", DataType::Int(IntType::new())) |
| 760 | .column("payload", DataType::Blob(BlobType::new())) |
| 761 | .option("data-evolution.enabled", "true") |
| 762 | .build() |
| 763 | .unwrap(); |
| 764 | TableSchema::new(0, &schema) |
| 765 | } |
| 766 | |
| 767 | async fn setup_dirs(file_io: &FileIO, table_path: &str) { |
| 768 | file_io |
no test coverage detected