diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-11 21:17:35 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-08-11 21:17:35 +0000 |
commit | e44beef712144316cb83d32ccf3231a1503c9655 (patch) | |
tree | 1b8cd8ecdc55866d61fcb44f4b5162303d9f023c /src/include/storage/bufmgr.h | |
parent | 9bccdf17f725550e463fbc9fddf0acf2ed3a8e66 (diff) |
Code review of CLUSTER patch. Clean up problems with relcache getting
confused, toasted data getting lost, etc.
Diffstat (limited to 'src/include/storage/bufmgr.h')
-rw-r--r-- | src/include/storage/bufmgr.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/storage/bufmgr.h b/src/include/storage/bufmgr.h index 7aebaa73da6..e92cc653777 100644 --- a/src/include/storage/bufmgr.h +++ b/src/include/storage/bufmgr.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: bufmgr.h,v 1.62 2002/08/06 02:36:35 tgl Exp $ + * $Id: bufmgr.h,v 1.63 2002/08/11 21:17:35 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -161,6 +161,7 @@ extern void AtEOXact_Buffers(bool isCommit); extern void FlushBufferPool(void); extern BlockNumber BufferGetBlockNumber(Buffer buffer); extern BlockNumber RelationGetNumberOfBlocks(Relation relation); +extern void RelationUpdateNumberOfBlocks(Relation relation); extern int FlushRelationBuffers(Relation rel, BlockNumber firstDelBlock); extern void DropRelationBuffers(Relation rel); extern void DropRelFileNodeBuffers(RelFileNode rnode, bool istemp); |