diff options
Diffstat (limited to 'src/backend/commands/vacuumlazy.c')
-rw-r--r-- | src/backend/commands/vacuumlazy.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/vacuumlazy.c b/src/backend/commands/vacuumlazy.c index 3685217fb79..38405f6c6cb 100644 --- a/src/backend/commands/vacuumlazy.c +++ b/src/backend/commands/vacuumlazy.c @@ -31,7 +31,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/vacuumlazy.c,v 1.7 2001/09/21 03:32:35 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/vacuumlazy.c,v 1.8 2001/09/29 04:02:22 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -53,7 +53,7 @@ * A page with less than PAGE_SPACE_THRESHOLD free space will be forgotten * immediately, and not even passed to the free space map. Removing the * uselessly small entries early saves cycles, and in particular reduces - * the amount of time we spend holding the FSM spinlock when we finally call + * the amount of time we spend holding the FSM lock when we finally call * MultiRecordFreeSpace. Since the FSM will ignore pages below its own * runtime threshold anyway, there's no point in making this really small. * XXX Is it worth trying to measure average tuple size, and using that to |