File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -92,10 +92,10 @@ index child page to be split between the time we make a queue entry for it
9292(while visiting its parent page) and the time we actually reach and scan
9393the child page. To avoid missing the entries that were moved to the right
9494sibling, we detect whether a split has occurred by comparing the child
95- page's NSN to the LSN that the parent had when visited. If it did, the
96- sibling page is immediately added to the front of the queue, ensuring that
97- its items will be scanned in the same order as if they were still on the
98- original child page.
95+ page's NSN (node sequence number, a special-purpose LSN) to the LSN that
96+ the parent had when visited. If it did, the sibling page is immediately
97+ added to the front of the queue, ensuring that its items will be scanned
98+ in the same order as if they were still on the original child page.
9999
100100As is usual in Postgres, the search algorithm only guarantees to find index
101101entries that existed before the scan started; index entries added during
Original file line number Diff line number Diff line change 5151#define F_HAS_GARBAGE (1 << 4) /* some tuples on the page are dead,
5252 * but not deleted yet */
5353
54+ /* NSN - node sequence number, a special-purpose LSN */
5455typedef XLogRecPtr GistNSN ;
5556
5657/*
You can’t perform that action at this time.
0 commit comments