|
8 | 8 | * |
9 | 9 | * |
10 | 10 | * IDENTIFICATION |
11 | | - * $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.25 2001/01/24 19:42:47 momjian Exp $ |
| 11 | + * $Header: /cvsroot/pgsql/src/backend/access/hash/hashsearch.c,v 1.26 2001/03/23 04:49:51 momjian Exp $ |
12 | 12 | * |
13 | 13 | *------------------------------------------------------------------------- |
14 | 14 | */ |
@@ -334,9 +334,11 @@ _hash_step(IndexScanDesc scan, Buffer *bufP, ScanDirection dir, Buffer metabuf) |
334 | 334 | while (offnum > maxoff) |
335 | 335 | { |
336 | 336 |
|
337 | | - /* |
338 | | - * either this page is empty (maxoff == |
339 | | - * InvalidOffsetNumber) or we ran off the end. |
| 337 | + /*-------- |
| 338 | + * either this page is empty |
| 339 | + * (maxoff == InvalidOffsetNumber) |
| 340 | + * or we ran off the end. |
| 341 | + *-------- |
340 | 342 | */ |
341 | 343 | _hash_readnext(rel, &buf, &page, &opaque); |
342 | 344 | if (BufferIsInvalid(buf)) |
@@ -382,9 +384,11 @@ _hash_step(IndexScanDesc scan, Buffer *bufP, ScanDirection dir, Buffer metabuf) |
382 | 384 | while (offnum < FirstOffsetNumber) |
383 | 385 | { |
384 | 386 |
|
385 | | - /* |
386 | | - * either this page is empty (offnum == |
387 | | - * InvalidOffsetNumber) or we ran off the end. |
| 387 | + /*--------- |
| 388 | + * either this page is empty |
| 389 | + * (offnum == InvalidOffsetNumber) |
| 390 | + * or we ran off the end. |
| 391 | + *--------- |
388 | 392 | */ |
389 | 393 | _hash_readprev(rel, &buf, &page, &opaque); |
390 | 394 | if (BufferIsInvalid(buf)) |
|
0 commit comments