()
| 442 | } |
| 443 | |
| 444 | fn testing_schema() -> Schema { |
| 445 | Schema::builder() |
| 446 | .column( |
| 447 | "id", |
| 448 | crate::spec::DataType::Int(crate::spec::IntType::new()), |
| 449 | ) |
| 450 | .build() |
| 451 | .unwrap() |
| 452 | } |
| 453 | |
| 454 | #[tokio::test] |
| 455 | async fn test_database_operations() { |