Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
fae54e4a
Commit
fae54e4a
authored
13 years ago
by
Robert Haas
Browse files
Options
Downloads
Patches
Plain Diff
Update visibilitymap.c header comments.
Recent work on index-only scans left this somewhat out of date.
parent
7609239f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/access/heap/visibilitymap.c
+17
-16
17 additions, 16 deletions
src/backend/access/heap/visibilitymap.c
with
17 additions
and
16 deletions
src/backend/access/heap/visibilitymap.c
+
17
−
16
View file @
fae54e4a
...
@@ -27,22 +27,28 @@
...
@@ -27,22 +27,28 @@
* the sense that we make sure that whenever a bit is set, we know the
* the sense that we make sure that whenever a bit is set, we know the
* condition is true, but if a bit is not set, it might or might not be true.
* condition is true, but if a bit is not set, it might or might not be true.
*
*
*
There's no explicit WAL logging in the functions in this file.
The callers
*
Clearing a visibility map bit is not separately WAL-logged.
The callers
* must make sure that whenever a bit is cleared, the bit is cleared on WAL
* must make sure that whenever a bit is cleared, the bit is cleared on WAL
* replay of the updating operation as well. Setting bits during recovery
* replay of the updating operation as well.
* isn't necessary for correctness.
*
*
* Currently, the visibility map is only used as a hint, to speed up VACUUM.
* When we *set* a visibility map during VACUUM, we must write WAL. This may
* A corrupted visibility map won't cause data corruption, although it can
* seem counterintuitive, since the bit is basically a hint: if it is clear,
* make VACUUM skip pages that need vacuuming, until the next anti-wraparound
* it may still be the case that every tuple on the page is visible to all
* vacuum. The visibility map is not used for anti-wraparound vacuums, because
* transactions; we just don't know that for certain. The difficulty is that
* there are two bits which are typically set together: the PD_ALL_VISIBLE bit
* on the page itself, and the visibility map bit. If a crash occurs after the
* visibility map page makes it to disk and before the updated heap page makes
* it to disk, redo must set the bit on the heap page. Otherwise, the next
* insert, update, or delete on the heap page will fail to realize that the
* visibility map bit must be cleared, possibly causing index-only scans to
* return wrong answers.
*
* VACUUM will normally skip pages for which the visibility map bit is set;
* such pages can't contain any dead tuples and therefore don't need vacuuming.
* The visibility map is not used for anti-wraparound vacuums, because
* an anti-wraparound vacuum needs to freeze tuples and observe the latest xid
* an anti-wraparound vacuum needs to freeze tuples and observe the latest xid
* present in the table, even on pages that don't have any dead tuples.
* present in the table, even on pages that don't have any dead tuples.
*
*
* Although the visibility map is just a hint at the moment, the PD_ALL_VISIBLE
* flag on heap pages *must* be correct, because it is used to skip visibility
* checking.
*
* LOCKING
* LOCKING
*
*
* In heapam.c, whenever a page is modified so that not all tuples on the
* In heapam.c, whenever a page is modified so that not all tuples on the
...
@@ -72,11 +78,6 @@
...
@@ -72,11 +78,6 @@
* But when a bit is cleared, we don't have to do that because it's always
* But when a bit is cleared, we don't have to do that because it's always
* safe to clear a bit in the map from correctness point of view.
* safe to clear a bit in the map from correctness point of view.
*
*
* TODO
*
* It would be nice to use the visibility map to skip visibility checks in
* index scans.
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
#include
"postgres.h"
#include
"postgres.h"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment