MCPcopy Create free account
hub / github.com/apache/cloudberry / SearchSysCache4

Function SearchSysCache4

src/backend/utils/cache/syscache.c:1388–1397  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1386}
1387
1388HeapTuple
1389SearchSysCache4(int cacheId,
1390 Datum key1, Datum key2, Datum key3, Datum key4)
1391{
1392 Assert(cacheId >= 0 && cacheId < SysCacheSize &&
1393 PointerIsValid(SysCache[cacheId]));
1394 Assert(SysCache[cacheId]->cc_nkeys == 4);
1395
1396 return SearchCatCache4(SysCache[cacheId], key1, key2, key3, key4);
1397}
1398
1399/*
1400 * ReleaseSysCache

Callers 13

PGGetOperatorFunction · 0.85
PGGetAddOperatorFunction · 0.85
get_opfamily_memberFunction · 0.85
get_opfamily_procFunction · 0.85
AddTagDescriptionsFunction · 0.85
AlterTagDescriptionsFunction · 0.85
UnsetTagDescriptionsFunction · 0.85
OpernameGetOpridFunction · 0.85

Calls 1

SearchCatCache4Function · 0.85

Tested by

no test coverage detected