(&mut self, table_name: &str)
| 598 | } |
| 599 | |
| 600 | async fn delete_schema(&mut self, table_name: &str) -> Result<()> { |
| 601 | if self.is_virtual_table(table_name) { |
| 602 | Err(GlueError::StorageMsg( |
| 603 | "Cannot delete virtual table schema".to_string(), |
| 604 | )) |
| 605 | } else { |
| 606 | self.json_storage.delete_schema(table_name).await |
| 607 | } |
| 608 | } |
| 609 | |
| 610 | async fn append_data(&mut self, table_name: &str, rows: Vec<DataRow>) -> Result<()> { |
| 611 | if self.is_virtual_table(table_name) { |
nothing calls this directly
no test coverage detected