diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-05-03 17:42:11 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-05-03 17:42:11 +0000 |
commit | 1a69a37d5b44ebc97c053ee660bbd610cebbfd93 (patch) | |
tree | 5d68e410598a335e55c0aacace522a52376f93b0 /src | |
parent | d662f2930249a50bc7a4901016e8b875fe6f3c84 (diff) | |
download | postgresql-1a69a37d5b44ebc97c053ee660bbd610cebbfd93.tar.gz postgresql-1a69a37d5b44ebc97c053ee660bbd610cebbfd93.zip |
Fix obsolete comments.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/storage/buffer/localbuf.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/backend/storage/buffer/localbuf.c b/src/backend/storage/buffer/localbuf.c index 4b4a31066b2..44446d30a49 100644 --- a/src/backend/storage/buffer/localbuf.c +++ b/src/backend/storage/buffer/localbuf.c @@ -16,7 +16,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/buffer/localbuf.c,v 1.41 2001/05/12 19:58:27 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/buffer/localbuf.c,v 1.42 2002/05/03 17:42:11 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -109,10 +109,7 @@ LocalBufferAlloc(Relation reln, BlockNumber blockNum, bool *foundPtr) (char *) MAKE_PTR(bufHdr->data)); LocalBufferFlushCount++; - /* - * drop relcache refcount incremented by - * RelationIdCacheGetRelation - */ + /* drop refcount incremented by RelationNodeCacheGetRelation */ RelationDecrementReferenceCount(bufrel); } @@ -249,7 +246,7 @@ LocalBufferSync(void) smgrmarkdirty(DEFAULT_SMGR, bufrel, buf->tag.blockNum); LocalBufferFlushCount++; - /* drop relcache refcount from RelationIdCacheGetRelation */ + /* drop relcache refcount from RelationNodeCacheGetRelation */ RelationDecrementReferenceCount(bufrel); buf->flags &= ~BM_DIRTY; |