diff options
author | Bruce Momjian <bruce@momjian.us> | 2001-03-23 04:49:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2001-03-23 04:49:58 +0000 |
commit | 7cf952e7b4ad4d0d603ad13ab91f55c3ec41affe (patch) | |
tree | 21c9d56c3701e984573ecc3ff40e72c0f63d5baf /src/backend/access/nbtree/nbtsearch.c | |
parent | 4e911c847ce906094df6595700571b714d3bb537 (diff) | |
download | postgresql-7cf952e7b4ad4d0d603ad13ab91f55c3ec41affe.tar.gz postgresql-7cf952e7b4ad4d0d603ad13ab91f55c3ec41affe.zip |
Fix comments that were mis-wrapped, for Tom Lane.
Diffstat (limited to 'src/backend/access/nbtree/nbtsearch.c')
-rw-r--r-- | src/backend/access/nbtree/nbtsearch.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/backend/access/nbtree/nbtsearch.c b/src/backend/access/nbtree/nbtsearch.c index e7ea3643531..59bf5358e4f 100644 --- a/src/backend/access/nbtree/nbtsearch.c +++ b/src/backend/access/nbtree/nbtsearch.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.65 2001/03/22 06:16:07 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/nbtree/nbtsearch.c,v 1.66 2001/03/23 04:49:51 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -584,8 +584,10 @@ _bt_first(IndexScanDesc scan, ScanDirection dir) /* * At this point we are positioned at the first item >= scan key, or - * possibly at the end of a page on which all the existing items are < - * scan key and we know that everything on later pages is >= scan key. + * possibly at the end of a page on which all the existing items are + * greater than the scan key and we know that everything on later pages + * is less than or equal to scan key. + * * We could step forward in the latter case, but that'd be a waste of * time if we want to scan backwards. So, it's now time to examine * the scan strategy to find the exact place to start the scan. |