From 5a2749720fbdb96aef16a31660dd4a37511047f8 Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Wed, 3 Dec 2008 12:22:53 +0000 Subject: [PATCH] Small comment fixes. --- src/backend/storage/freespace/freespace.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/backend/storage/freespace/freespace.c b/src/backend/storage/freespace/freespace.c index 7f65487de2..93f9e6b07d 100644 --- a/src/backend/storage/freespace/freespace.c +++ b/src/backend/storage/freespace/freespace.c @@ -535,7 +535,7 @@ fsm_readbuf(Relation rel, FSMAddress addr, bool extend) } /* - * Ensure that the FSM fork is at least n_fsmblocks long, extending + * Ensure that the FSM fork is at least fsm_nblocks long, extending * it if necessary with empty pages. And by empty, I mean pages filled * with zeros, meaning there's no free space. */ @@ -555,8 +555,8 @@ fsm_extend(Relation rel, BlockNumber fsm_nblocks) * FSM happens seldom enough that it doesn't seem worthwhile to * have a separate lock tag type for it. * - * Note that another backend might have extended the relation - * before we get the lock. + * Note that another backend might have extended or created the + * relation before we get the lock. */ LockRelationForExtension(rel, ExclusiveLock); -- 2.39.5