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

Method execute_per_item

crates/ccql/src/query/mod.rs:185–192  ·  view source on GitHub ↗
(&self, query: &str, inputs: Vec<Value>)

Source from the content-addressed store, hash-verified

183 }
184
185 pub fn execute_per_item(&self, query: &str, inputs: Vec<Value>) -> Result<Vec<Value>> {
186 let mut results = Vec::new();
187 for input in inputs {
188 let item_results = self.execute(query, input)?;
189 results.extend(item_results);
190 }
191 Ok(results)
192 }
193}
194
195impl Default for QueryEngine {

Callers

nothing calls this directly

Calls 1

executeMethod · 0.45

Tested by

no test coverage detected