(&mut self, table_name: &str, keys: Vec<Key>)
| 628 | } |
| 629 | |
| 630 | async fn delete_data(&mut self, table_name: &str, keys: Vec<Key>) -> Result<()> { |
| 631 | if self.is_virtual_table(table_name) { |
| 632 | Err(GlueError::StorageMsg( |
| 633 | "Write operations on virtual multi-file tables not yet supported".to_string(), |
| 634 | )) |
| 635 | } else { |
| 636 | self.json_storage.delete_data(table_name, keys).await |
| 637 | } |
| 638 | } |
| 639 | } |
| 640 | |
| 641 | // Implement Metadata (delegate to JsonStorage) |
nothing calls this directly
no test coverage detected