File tree 1 file changed +3
-3
lines changed
src/backend/access/nbtree
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
17
17
Compared to a classic B-tree, L&Y adds a right-link pointer to each page,
18
18
to the page's right sibling. It also adds a "high key" to each page, which
19
19
is 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).
23
23
24
24
When a search follows a downlink to a child page, it compares the page's
25
25
high 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