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

Function SearchCatCache

src/backend/utils/cache/catcache.c:1202–1210  ·  view source on GitHub ↗

* SearchCatCache * * This call searches a system cache for a tuple, opening the relation * if necessary (on the first access to a particular cache). * * The result is NULL if not found, or a pointer to a HeapTuple in * the cache. The caller must not modify the tuple, and must call * ReleaseCatCache() when done with it. * * The search key values should be expressed as Datums of the k

Source from the content-addressed store, hash-verified

1200 * null-padded NAME.
1201 */
1202HeapTuple
1203SearchCatCache(CatCache *cache,
1204 Datum v1,
1205 Datum v2,
1206 Datum v3,
1207 Datum v4)
1208{
1209 return SearchCatCacheInternal(cache, cache->cc_nkeys, v1, v2, v3, v4);
1210}
1211
1212
1213/*

Callers 1

SearchSysCacheFunction · 0.85

Calls 1

SearchCatCacheInternalFunction · 0.85

Tested by

no test coverage detected