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

Function SearchSysCache2

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

Source from the content-addressed store, hash-verified

1364}
1365
1366HeapTuple
1367SearchSysCache2(int cacheId,
1368 Datum key1, Datum key2)
1369{
1370 Assert(cacheId >= 0 && cacheId < SysCacheSize &&
1371 PointerIsValid(SysCache[cacheId]));
1372 Assert(SysCache[cacheId]->cc_nkeys == 2);
1373
1374 return SearchCatCache2(SysCache[cacheId], key1, key2);
1375}
1376
1377HeapTuple
1378SearchSysCache3(int cacheId,

Callers 15

get_rewrite_oidFunction · 0.85
InsertRuleFunction · 0.85
SearchSysCacheAttNameFunction · 0.85
SearchSysCacheAttNumFunction · 0.85
get_attnameFunction · 0.85
get_attstattargetFunction · 0.85
get_attgeneratedFunction · 0.85
get_atttypeFunction · 0.85
get_atttypetypmodcollFunction · 0.85
get_attoptionsFunction · 0.85
get_transform_fromsqlFunction · 0.85

Calls 1

SearchCatCache2Function · 0.85

Tested by

no test coverage detected