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 | d61b39c7e2f945854551ef087c48c294a265d88d (patch) | |
tree | 51d304dba77d92ece24a71ff2ed557d5c8b86130 | |
parent | 42f62e4c976e1cf90f5e5a6381c4ee656260f230 (diff) | |
download | postgresql-d61b39c7e2f945854551ef087c48c294a265d88d.tar.gz postgresql-d61b39c7e2f945854551ef087c48c294a265d88d.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 0506a9340c3..7748b3986b7 100644 --- a/src/backend/commands/vacuumlazy.c +++ b/src/backend/commands/vacuumlazy.c @@ -523,7 +523,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 |