Fix comment on B-tree insertion fastpath condition.

The comment earlier in the function correctly states "and the insertion
key is strictly greater than the first key in this page". That is what
we check here, not "greater than or equal".
This commit is contained in:
Heikki Linnakangas 2018-04-10 16:57:19 +03:00
parent 3b8f6e75f3
commit 29d7ebf51e
1 changed files with 3 additions and 3 deletions

View File

@ -171,9 +171,9 @@ top:
/*
* Check if the page is still the rightmost leaf page, has enough
* free space to accommodate the new tuple, no split is in progress
* and the scankey is greater than or equal to the first key on the
* page.
* free space to accommodate the new tuple, no split is in
* progress, and the insertion scan key is strictly greater than
* the first key on the page.
*/
if (P_ISLEAF(lpageop) && P_RIGHTMOST(lpageop) &&
!P_INCOMPLETE_SPLIT(lpageop) &&