We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e882bca commit 1153422Copy full SHA for 1153422
src/backend/utils/cache/catcache.c
@@ -1194,7 +1194,7 @@ InitCatCachePhase2(CatCache *cache, bool touch_index)
1194
* catalogs' indexes.
1195
*/
1196
static bool
1197
-IndexScanOK(CatCache *cache, ScanKey cur_skey)
+IndexScanOK(CatCache *cache)
1198
{
1199
switch (cache->id)
1200
@@ -1483,7 +1483,7 @@ SearchCatCacheMiss(CatCache *cache,
1483
1484
scandesc = systable_beginscan(relation,
1485
cache->cc_indexoid,
1486
- IndexScanOK(cache, cur_skey),
+ IndexScanOK(cache),
1487
NULL,
1488
nkeys,
1489
cur_skey);
@@ -1803,7 +1803,7 @@ SearchCatCacheList(CatCache *cache,
1803
1804
1805
1806
1807
1808
1809
0 commit comments