MCPcopy Create free account
hub / github.com/douglance/devsql / delete_data

Method delete_data

crates/ccql/src/sql/composite_storage.rs:630–638  ·  view source on GitHub ↗
(&mut self, table_name: &str, keys: Vec<Key>)

Source from the content-addressed store, hash-verified

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)

Callers

nothing calls this directly

Calls 1

is_virtual_tableMethod · 0.80

Tested by

no test coverage detected