diff options
author | Peter Geoghegan <pg@bowt.ie> | 2024-10-16 17:38:38 -0400 |
---|---|---|
committer | Peter Geoghegan <pg@bowt.ie> | 2024-10-16 17:38:38 -0400 |
commit | c0490b0ef773d8694d1a9bfbf4116a102c07458d (patch) | |
tree | 14c08b3fe4d6f12a40b7614defac928d31fd8d79 /src | |
parent | c96de42c4b5f5d7bf785265cf26836326e28c6b6 (diff) | |
download | postgresql-c0490b0ef773d8694d1a9bfbf4116a102c07458d.tar.gz postgresql-c0490b0ef773d8694d1a9bfbf4116a102c07458d.zip |
nbtree: fix read page recheck typo.
Oversight in commit 79fa7b3b.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/nbtree/nbtsearch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/nbtree/nbtsearch.c b/src/backend/access/nbtree/nbtsearch.c index 91ac6533f64..a662665b55f 100644 --- 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 stoppped 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. |