Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
36
bool CacheObj_EQ(const CacheObj *a, const CacheObj *b) {
37
if(a == b) return true;
38
return (strcmp(a->str, b->str) == 0);
39
}
40
41
void CacheObj_Free(CacheObj *obj) {
42
free_count++;
Callers
1
test_executionPlanCache
Function · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected