MCPcopy Create free account
hub / github.com/NodeDB-Lab/nodedb / plan_delete

Method plan_delete

nodedb-sql/src/engine_rules/kv.rs:90–97  ·  view source on GitHub ↗
(&self, p: DeleteParams)

Source from the content-addressed store, hash-verified

88 }
89
90 fn plan_delete(&self, p: DeleteParams) -> Result<Vec<SqlPlan>> {
91 Ok(vec![SqlPlan::Delete {
92 collection: p.collection,
93 engine: EngineType::KeyValue,
94 filters: p.filters,
95 target_keys: p.target_keys,
96 }])
97 }
98
99 fn plan_aggregate(&self, p: AggregateParams) -> Result<SqlPlan> {
100 let base_scan = SqlPlan::Scan {

Callers 1

plan_deleteFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected