diff options
author | Peter Geoghegan <pg@bowt.ie> | 2024-04-16 12:04:20 -0400 |
---|---|---|
committer | Peter Geoghegan <pg@bowt.ie> | 2024-04-16 12:04:20 -0400 |
commit | c62d2ebd9e6f94758f5ed3a28cf08861229ae421 (patch) | |
tree | 6cd5dfabf0b6032c522c7b4526b8023eaf716252 /src | |
parent | 984c0eccd0ccfcd7df8df47586e3b935a8124a15 (diff) |
Fix nbtree "deduce NOT NULL" scan key comment.
Oversight in commit c9c0589fda.
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 d241e8ea1dc..57bcfc7e4c6 100644 --- a/src/backend/access/nbtree/nbtsearch.c +++ b/src/backend/access/nbtree/nbtsearch.c @@ -1051,7 +1051,7 @@ _bt_first(IndexScanDesc scan, ScanDirection dir) ScanDirectionIsForward(dir) : ScanDirectionIsBackward(dir))) { - /* Yes, so build the key in notnullkeys[keysCount] */ + /* Yes, so build the key in notnullkeys[keysz] */ chosen = ¬nullkeys[keysz]; ScanKeyEntryInitialize(chosen, (SK_SEARCHNOTNULL | SK_ISNULL | |