aboutsummaryrefslogtreecommitdiff
path: root/src/backend/utils/cache
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2000-01-17 23:57:48 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2000-01-17 23:57:48 +0000
commit9e0b4634732d089237c5eaecb91ad4b1e943bc0f (patch)
tree0d859dec00da70831ab29720914d2f08b14d5183 /src/backend/utils/cache
parentfb0627d97238aab8e4cfe373df9f654c38de7229 (diff)
downloadpostgresql-9e0b4634732d089237c5eaecb91ad4b1e943bc0f.tar.gz
postgresql-9e0b4634732d089237c5eaecb91ad4b1e943bc0f.zip
setheapoverride() is history. Uses replaced with CommandCounterIncrement()
where necessary --- several of them didn't really need it, though. tqual-checking macros simplified accordingly.
Diffstat (limited to 'src/backend/utils/cache')
-rw-r--r--src/backend/utils/cache/catcache.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/backend/utils/cache/catcache.c b/src/backend/utils/cache/catcache.c
index c9f26f38ad0..aa76d46862f 100644
--- a/src/backend/utils/cache/catcache.c
+++ b/src/backend/utils/cache/catcache.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/utils/cache/catcache.c,v 1.56 2000/01/10 16:13:15 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/utils/cache/catcache.c,v 1.57 2000/01/17 23:57:46 tgl Exp $
*
*-------------------------------------------------------------------------
*/
@@ -1047,8 +1047,7 @@ SearchSysCache(struct catcache * cache,
* if this isn't bootstrap (initdb) time, use the index.
* ----------------
*/
- CACHE2_elog(DEBUG, "SearchSysCache: performing scan (override==%d)",
- heapisoverride());
+ CACHE1_elog(DEBUG, "SearchSysCache: performing scan");
if ((RelationGetForm(relation))->relhasindex
&& !IsBootstrapProcessingMode())