MCPcopy Create free account
hub / github.com/DeusData/codebase-memory-mcp / project_star_row

Function project_star_row

src/cypher/cypher.c:4210–4214  ·  view source on GitHub ↗

Project one binding row for RETURN * */

Source from the content-addressed store, hash-verified

4208
4209/* Project one binding row for RETURN * */
4210static void project_star_row(binding_t *b, const char **vars, int vc, const char **vals) {
4211 for (int v = 0; v < vc; v++) {
4212 project_star_var(b, vars[v], vals + ((size_t)v * CYP_NODE_COLS));
4213 }
4214}
4215
4216static void execute_return_star(cbm_query_t *q, binding_t *bindings, int bind_count, int max_rows,
4217 result_builder_t *rb) {

Callers 1

execute_return_starFunction · 0.85

Calls 1

project_star_varFunction · 0.85

Tested by

no test coverage detected