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

Function CacheObj_EQ

tests/unit/test_cache.c:36–39  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34}
35
36bool CacheObj_EQ(const CacheObj *a, const CacheObj *b) {
37 if(a == b) return true;
38 return (strcmp(a->str, b->str) == 0);
39}
40
41void CacheObj_Free(CacheObj *obj) {
42 free_count++;

Callers 1

test_executionPlanCacheFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected