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

Function SearchSysCache1

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

Source from the content-addressed store, hash-verified

1353}
1354
1355HeapTuple
1356SearchSysCache1(int cacheId,
1357 Datum key1)
1358{
1359 Assert(cacheId >= 0 && cacheId < SysCacheSize &&
1360 PointerIsValid(SysCache[cacheId]));
1361 Assert(SysCache[cacheId]->cc_nkeys == 1);
1362
1363 return SearchCatCache1(SysCache[cacheId], key1);
1364}
1365
1366HeapTuple
1367SearchSysCache2(int cacheId,

Callers 15

deparseOpExprFunction · 0.85
deparseScalarArrayOpExprFunction · 0.85
appendOrderBySuffixFunction · 0.85
appendFunctionNameFunction · 0.85
sepgsql_relation_setattrFunction · 0.85
sepgsql_proc_setattrFunction · 0.85
TypeValueToCStringFunction · 0.85
PGGetOperatorNoFunction · 0.85
PGGetProcFunction · 0.85
PGGetAggInfoFunction · 0.85
SumAGGGetProcinfoFunction · 0.85

Calls 1

SearchCatCache1Function · 0.85

Tested by 1

plsample_func_handlerFunction · 0.68