File tree 4 files changed +7
-9
lines changed 4 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 31
31
*
32
32
*
33
33
* IDENTIFICATION
34
- * $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.38 2004/02/12 05:39:55 tgl Exp $
34
+ * $PostgreSQL: pgsql/src/backend/commands/vacuumlazy.c,v 1.39 2004/04/25 23:50:54 neilc Exp $
35
35
*
36
36
*-------------------------------------------------------------------------
37
37
*/
@@ -813,7 +813,7 @@ count_nondeletable_pages(Relation onerel, LVRelStats *vacrelstats)
813
813
814
814
if (PageIsNew (page ) || PageIsEmpty (page ))
815
815
{
816
- /* PageIsNew robably shouldn't happen... */
816
+ /* PageIsNew probably shouldn't happen... */
817
817
LockBuffer (buf , BUFFER_LOCK_UNLOCK );
818
818
ReleaseBuffer (buf );
819
819
continue ;
Original file line number Diff line number Diff line change 8
8
*
9
9
*
10
10
* IDENTIFICATION
11
- * $PostgreSQL: pgsql/src/backend/storage/buffer/bufmgr.c,v 1.163 2004/04/22 07:21:55 neilc Exp $
11
+ * $PostgreSQL: pgsql/src/backend/storage/buffer/bufmgr.c,v 1.164 2004/04/25 23:50:54 neilc Exp $
12
12
*
13
13
*-------------------------------------------------------------------------
14
14
*/
35
35
*/
36
36
#include "postgres.h"
37
37
38
- #include <math.h>
39
- #include <signal.h>
40
38
#include <sys/file.h>
41
39
#include <unistd.h>
42
40
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $PostgreSQL: pgsql/src/include/storage/buf.h,v 1.16 2003/11/29 22:41:13 pgsql Exp $
10
+ * $PostgreSQL: pgsql/src/include/storage/buf.h,v 1.17 2004/04/25 23:50:58 neilc Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -32,7 +32,7 @@ typedef int Buffer;
32
32
33
33
/*
34
34
* BufferIsLocal
35
- * True iff the buffer is local (not visible to other servers ).
35
+ * True iff the buffer is local (not visible to other backends ).
36
36
*/
37
37
#define BufferIsLocal (buffer ) ((buffer) < 0)
38
38
Original file line number Diff line number Diff line change 7
7
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
8
8
* Portions Copyright (c) 1994, Regents of the University of California
9
9
*
10
- * $PostgreSQL: pgsql/src/include/storage/bufmgr.h,v 1.77 2004/04/22 07:21:55 neilc Exp $
10
+ * $PostgreSQL: pgsql/src/include/storage/bufmgr.h,v 1.78 2004/04/25 23:50:58 neilc Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -42,7 +42,7 @@ extern DLLIMPORT int NLocBuffer;
42
42
extern DLLIMPORT Block * LocalBufferBlockPointers ;
43
43
extern int32 * LocalRefCount ;
44
44
45
- /* special pageno for bget */
45
+ /* special block number for ReadBuffer() */
46
46
#define P_NEW InvalidBlockNumber /* grow the file to get a new page */
47
47
48
48
/*
You can’t perform that action at this time.
0 commit comments