Previous code cleanup was for bufpage.c, not bufmgr.c.
This cleanup just cleans up a comment.
This commit is contained in:
parent
69616f96ec
commit
a1ccbb9019
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/backend/storage/page/bufpage.c,v 1.58 2004/06/08 14:00:35 momjian Exp $
|
* $PostgreSQL: pgsql/src/backend/storage/page/bufpage.c,v 1.59 2004/06/09 13:11:34 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -91,21 +91,19 @@ PageHeaderIsValid(PageHeader page)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ----------------
|
/*
|
||||||
* PageAddItem
|
* PageAddItem
|
||||||
*
|
*
|
||||||
* Add an item to a page. Return value is offset at which it was
|
* Add an item to a page. Return value is offset at which it was
|
||||||
* inserted, or InvalidOffsetNumber if there's not room to insert.
|
* inserted, or InvalidOffsetNumber if there's not room to insert.
|
||||||
*
|
*
|
||||||
* If offsetNumber is valid and <= current max offset in the page,
|
* If offsetNumber is valid and <= current max offset in the page,
|
||||||
* insert item into the array at that position by shuffling ItemId's
|
* insert item into the array at that position by shuffling ItemId's
|
||||||
* down to make room.
|
* down to make room.
|
||||||
* If offsetNumber is not valid, then assign one by finding the first
|
* If offsetNumber is not valid, then assign one by finding the first
|
||||||
* one that is both unused and deallocated.
|
* one that is both unused and deallocated.
|
||||||
*
|
*
|
||||||
* !!! EREPORT(ERROR) IS DISALLOWED HERE !!!
|
* !!! EREPORT(ERROR) IS DISALLOWED HERE !!!
|
||||||
*
|
|
||||||
* ----------------
|
|
||||||
*/
|
*/
|
||||||
OffsetNumber
|
OffsetNumber
|
||||||
PageAddItem(Page page,
|
PageAddItem(Page page,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user