()
| 835 | |
| 836 | #[test] |
| 837 | fn test_allows_append_blob_table() { |
| 838 | let table = Table::new( |
| 839 | test_file_io(), |
| 840 | Identifier::new("default", "test_blob_table"), |
| 841 | "memory:/test_blob_table".to_string(), |
| 842 | test_blob_table_schema(), |
| 843 | None, |
| 844 | ); |
| 845 | |
| 846 | assert!(TableWrite::new(&table, "test-user".to_string()).is_ok()); |
| 847 | } |
| 848 | |
| 849 | #[tokio::test] |
| 850 | async fn test_blob_write_and_commit() { |
nothing calls this directly
no test coverage detected