| 1353 | } |
| 1354 | |
| 1355 | HeapTuple |
| 1356 | SearchSysCache1(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 | |
| 1366 | HeapTuple |
| 1367 | SearchSysCache2(int cacheId, |