diff options
| author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2013-09-24 18:19:14 -0300 |
|---|---|---|
| committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2013-09-24 18:21:50 -0300 |
| commit | 5d1629919b55816a097d06b6fc5b8448993fa9b0 (patch) | |
| tree | 5623e8b64bd43a8568ca1ec5e490231bfb43c74a | |
| parent | 1ba5fe8dd4e35cba574858538c689aabdea25e73 (diff) | |
Fix pgindent comment breakage
| -rw-r--r-- | src/backend/access/heap/visibilitymap.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/backend/access/heap/visibilitymap.c b/src/backend/access/heap/visibilitymap.c index 88a0c74e32a..bab6aba3682 100644 --- a/src/backend/access/heap/visibilitymap.c +++ b/src/backend/access/heap/visibilitymap.c @@ -352,11 +352,15 @@ visibilitymap_truncate(Relation rel, BlockNumber nheapblocks) /* Clear out the unwanted bytes. */ MemSet(&map[truncByte + 1], 0, MAPSIZE - (truncByte + 1)); - /* + /*---- * Mask out the unwanted bits of the last remaining byte. * - * ((1 << 0) - 1) = 00000000 ((1 << 1) - 1) = 00000001 ... ((1 << 6) - - * 1) = 00111111 ((1 << 7) - 1) = 01111111 + * ((1 << 0) - 1) = 00000000 + * ((1 << 1) - 1) = 00000001 + * ... + * ((1 << 6) - 1) = 00111111 + * ((1 << 7) - 1) = 01111111 + *---- */ map[truncByte] &= (1 << truncBit) - 1; |
