1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-31 17:02:12 +03:00

Tiny assorted fixes: correct a typo in a comment in vacuumlazy.c, remove

some unused #include directives from bufmgr.c, and clarify comments in
bufmgr.h and buf.h
This commit is contained in:
Neil Conway
2004-04-25 23:50:58 +00:00
parent 1cb7f2ebf3
commit 0370951347
4 changed files with 7 additions and 9 deletions

View File

@@ -31,7 +31,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.38 2004/02/12 05:39:55 tgl Exp $
* $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.39 2004/04/25 23:50:54 neilc Exp $
*
*-------------------------------------------------------------------------
*/
@@ -813,7 +813,7 @@ count_nondeletable_pages(Relation onerel, LVRelStats *vacrelstats)
if (PageIsNew(page) || PageIsEmpty(page))
{
/* PageIsNew robably shouldn't happen... */
/* PageIsNew probably shouldn't happen... */
LockBuffer(buf, BUFFER_LOCK_UNLOCK);
ReleaseBuffer(buf);
continue;