projects
/
users
/
c2main
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c96de42
)
nbtree: fix read page recheck typo.
author
Peter Geoghegan
<pg@bowt.ie>
Wed, 16 Oct 2024 21:38:38 +0000
(17:38 -0400)
committer
Peter Geoghegan
<pg@bowt.ie>
Wed, 16 Oct 2024 21:38:38 +0000
(17:38 -0400)
Oversight in commit
79fa7b3b
.
src/backend/access/nbtree/nbtsearch.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/access/nbtree/nbtsearch.c
b/src/backend/access/nbtree/nbtsearch.c
index 91ac6533f6434c4f95361981cf9b43bc7f61dfc7..a662665b55fc87f8acdabb321384a730871041be 100644
(file)
--- a/
src/backend/access/nbtree/nbtsearch.c
+++ b/
src/backend/access/nbtree/nbtsearch.c
@@
-1713,7
+1713,7
@@
_bt_readpage(IndexScanDesc scan, ScanDirection dir, OffsetNumber offnum,
* required scan keys up to and including a > or >= scan key.
*
* _bt_checkkeys won't consider the scanBehind flag unless the
- * scan is stopp
p
ed by a scan key required in the current scan
+ * scan is stopped by a scan key required in the current scan
* direction. We need this recheck so that we'll notice when
* all tuples on this page are still before the _bt_first-wise
* start of matches for the current set of array keys.