diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2017-07-07 17:10:36 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2017-07-07 17:10:36 -0400 |
commit | 46e91519425c5e98380c672d1b5c3acf18c5e565 (patch) | |
tree | 7e241d02d8bc7ec148d41be7581b1b57a0b2531d | |
parent | 4808d69955f5115686633cd3cc78b9957122e1ad (diff) | |
download | postgresql-46e91519425c5e98380c672d1b5c3acf18c5e565.tar.gz postgresql-46e91519425c5e98380c672d1b5c3acf18c5e565.zip |
Fix typo
Noticed while reviewing code.
-rw-r--r-- | src/backend/commands/vacuumlazy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/commands/vacuumlazy.c b/src/backend/commands/vacuumlazy.c index 881c7356db3..30a0050ae17 100644 --- a/src/backend/commands/vacuumlazy.c +++ b/src/backend/commands/vacuumlazy.c @@ -529,7 +529,7 @@ lazy_scan_heap(Relation onerel, int options, LVRelStats *vacrelstats, * safely set for relfrozenxid or relminmxid. * * Before entering the main loop, establish the invariant that - * next_unskippable_block is the next block number >= blkno that's not we + * next_unskippable_block is the next block number >= blkno that we * can't skip based on the visibility map, either all-visible for a * regular scan or all-frozen for an aggressive scan. We set it to * nblocks if there's no such block. We also set up the skipping_blocks |