File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/backend/access/nbtree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,9 +17,9 @@ The basic Lehman & Yao Algorithm
1717Compared to a classic B-tree, L&Y adds a right-link pointer to each page,
1818to the page's right sibling. It also adds a "high key" to each page, which
1919is an upper bound on the keys that are allowed on that page. These two
20- additions make it possible detect a concurrent page split, which allows the
21- tree to be searched without holding any read locks (except to keep a single
22- page from being modified while reading it).
20+ additions make it possible to detect a concurrent page split, which allows
21+ the tree to be searched without holding any read locks (except to keep a
22+ single page from being modified while reading it).
2323
2424When a search follows a downlink to a child page, it compares the page's
2525high key with the search key. If the search key is greater than the high
You can’t perform that action at this time.
0 commit comments