aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Geoghegan <pg@bowt.ie>2019-07-15 14:35:05 -0700
committerPeter Geoghegan <pg@bowt.ie>2019-07-15 14:35:05 -0700
commitac37bd51a4227683529f37148d6aefc95c837abb (patch)
tree110def87d9c7a07d13ad172622134053264889a4 /src
parent2f23453e492955c32d952bc1cff651e66657d32b (diff)
downloadpostgresql-ac37bd51a4227683529f37148d6aefc95c837abb.tar.gz
postgresql-ac37bd51a4227683529f37148d6aefc95c837abb.zip
Correct nbtsplitloc.c comment.
The logic just added by commit e3899ffd falls back on a 50:50 page split in the event of a new item that's just to the right of our provisional "many duplicates" split point. Fix a comment that incorrectly claimed that the new item had to be just to the left of our provisional split point. Backpatch: 12-, just like commit e3899ffd.
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/nbtree/nbtsplitloc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/nbtree/nbtsplitloc.c b/src/backend/access/nbtree/nbtsplitloc.c
index 382496d41cd..a7882fd8742 100644
--- a/src/backend/access/nbtree/nbtsplitloc.c
+++ b/src/backend/access/nbtree/nbtsplitloc.c
@@ -815,7 +815,7 @@ _bt_bestsplitloc(FindSplitData *state, int perfectpenalty,
{
/*
* Avoid the problem by peforming a 50:50 split when the new item is
- * just to the left of the would-be "many duplicates" split point.
+ * just to the right of the would-be "many duplicates" split point.
*/
final = &state->splits[0];
}