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

Function SearchSysCache3

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

Source from the content-addressed store, hash-verified

1375}
1376
1377HeapTuple
1378SearchSysCache3(int cacheId,
1379 Datum key1, Datum key2, Datum key3)
1380{
1381 Assert(cacheId >= 0 && cacheId < SysCacheSize &&
1382 PointerIsValid(SysCache[cacheId]));
1383 Assert(SysCache[cacheId]->cc_nkeys == 3);
1384
1385 return SearchCatCache3(SysCache[cacheId], key1, key2, key3);
1386}
1387
1388HeapTuple
1389SearchSysCache4(int cacheId,

Callers 15

PGGetAggInfoFunction · 0.85
SumAGGGetProcinfoFunction · 0.85
get_op_opfamily_strategyFunction · 0.85
get_attavgwidthFunction · 0.85
examine_variableFunction · 0.85
examine_simple_variableFunction · 0.85
btcostestimateFunction · 0.85
brincostestimateFunction · 0.85
try_fetch_rel_statsFunction · 0.85
update_attstatsFunction · 0.85

Calls 1

SearchCatCache3Function · 0.85

Tested by

no test coverage detected