|
8 | 8 | * |
9 | 9 | * |
10 | 10 | * IDENTIFICATION |
11 | | - * $PostgreSQL: pgsql/src/backend/access/heap/visibilitymap.c,v 1.9 2010/02/26 02:00:33 momjian Exp $ |
| 11 | + * $PostgreSQL: pgsql/src/backend/access/heap/visibilitymap.c,v 1.10 2010/04/23 23:21:44 rhaas Exp $ |
12 | 12 | * |
13 | 13 | * INTERFACE ROUTINES |
14 | 14 | *visibilitymap_clear - clear a bit in the visibility map |
@@ -173,7 +173,7 @@ visibilitymap_clear(Relation rel, BlockNumber heapBlk) |
173 | 173 | * On entry, *buf should be InvalidBuffer or a valid buffer returned by |
174 | 174 | * an earlier call to visibilitymap_pin or visibilitymap_test on the same |
175 | 175 | * relation. On return, *buf is a valid buffer with the map page containing |
176 | | - * thethebit for heapBlk. |
| 176 | + * the bit for heapBlk. |
177 | 177 | * |
178 | 178 | * If the page doesn't exist in the map file yet, it is extended. |
179 | 179 | */ |
@@ -247,7 +247,7 @@ visibilitymap_set(Relation rel, BlockNumber heapBlk, XLogRecPtr recptr, |
247 | 247 | * On entry, *buf should be InvalidBuffer or a valid buffer returned by an |
248 | 248 | * earlier call to visibilitymap_pin or visibilitymap_test on the same |
249 | 249 | * relation. On return, *buf is a valid buffer with the map page containing |
250 | | - * thethebit for heapBlk, or InvalidBuffer. The caller is responsible for |
| 250 | + * the bit for heapBlk, or InvalidBuffer. The caller is responsible for |
251 | 251 | * releasing *buf after it's done testing and setting bits. |
252 | 252 | */ |
253 | 253 | bool |
|