MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / Record_FreeEntries

Function Record_FreeEntries

src/execution_plan/record.c:359–368  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

357}
358
359void Record_FreeEntries
360(
361 Record r
362) {
363 uint length = Record_length(r);
364 for(uint i = 0; i < length; i++) {
365 // free any allocations held by this Record
366 Record_FreeEntry(r, i);
367 }
368}
369
370// this function is currently unused
371void Record_Free

Callers 1

Record_FreeFunction · 0.85

Calls 2

Record_lengthFunction · 0.85
Record_FreeEntryFunction · 0.85

Tested by

no test coverage detected