(&self, name: &str)
| 53 | } |
| 54 | |
| 55 | pub(super) async fn undrop_collection_impl(&self, name: &str) -> NodeDbResult<()> { |
| 56 | let sql = format!("UNDROP COLLECTION {}", quote_identifier(name)); |
| 57 | self.execute_raw(&sql, &[]).await?; |
| 58 | Ok(()) |
| 59 | } |
| 60 | |
| 61 | pub(super) async fn drop_collection_purge_impl(&self, name: &str) -> NodeDbResult<()> { |
| 62 | let sql = format!("DROP COLLECTION {} PURGE", quote_identifier(name)); |
no test coverage detected