Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
b00326df
Commit
b00326df
authored
Jun 24, 2019
by
Peter Geoghegan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct obsolete amcheck comments.
Oversight in commit
dd299df8
.
parent
f31111bb
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
10 deletions
+12
-10
contrib/amcheck/verify_nbtree.c
contrib/amcheck/verify_nbtree.c
+12
-10
No files found.
contrib/amcheck/verify_nbtree.c
View file @
b00326df
...
...
@@ -798,23 +798,25 @@ nextpage:
* target page:
*
* - That every "real" data item is less than or equal to the high key, which
* is an upper bound on the items on the page
s (where there is a high key at
*
all -- pages that are rightmost lack one)
.
* is an upper bound on the items on the page
. Data items should be
*
strictly less than the high key when the page is an internal page
.
*
* - That within the page, every "real" item is less than or equal to the item
* immediately to its right, if any (i.e., that the items are in order within
* the page, so that the binary searches performed by index scans are sane).
* - That within the page, every data item is strictly less than the item
* immediately to its right, if any (i.e., that the items are in order
* within the page, so that the binary searches performed by index scans are
* sane).
*
* - That the last
item stored on the page is less than or equal to the first
*
"real" data item on the page to the right (if
such a first item is
* - That the last
data item stored on the page is strictly less than the
*
first data item on the page to the right (when
such a first item is
* available).
*
* -
That tuples report that they have the expected number of attributes.
*
INCLUDE index pivot tuples should not contain non-key
attributes.
* -
Various checks on the structure of tuples themselves. For example, check
*
that non-pivot tuples have no truncated
attributes.
*
* Furthermore, when state passed shows ShareLock held, function also checks:
*
* - That all child pages respect downlinks lower bound.
* - That all child pages respect strict lower bound from parent's pivot
* tuple.
*
* - That downlink to block was encountered in parent where that's expected.
* (Limited to heapallindexed readonly callers.)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment