* 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
| 1200 | * null-padded NAME. |
| 1201 | */ |
| 1202 | HeapTuple |
| 1203 | SearchCatCache(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 | /* |
no test coverage detected