diff options
author | David Rowley <drowley@postgresql.org> | 2024-04-28 20:03:34 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2024-04-28 20:03:34 +1200 |
commit | 310cd8ab386ca44213b62b1c36162110d46bfc7a (patch) | |
tree | 9de0009ba4dfda111dc17208b4af32bfe3c61000 /src/backend/access/heap/vacuumlazy.c | |
parent | e00b4f79e7367272b436dea6f15d6f421f3d6e1a (diff) |
Fix duplicated consecutive words in comments
Also, fix a comment incorrectly referencing the "streaming read API".
This was renamed to "read stream" shortly before being committed.
Discussion: https://postgr.es/m/CAApHDvq-2Zdqytm_Hf3RmVf0qg5PS9jTFAJ5QTc9xH9pwvwDTA@mail.gmail.com
Diffstat (limited to 'src/backend/access/heap/vacuumlazy.c')
-rw-r--r-- | src/backend/access/heap/vacuumlazy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/access/heap/vacuumlazy.c b/src/backend/access/heap/vacuumlazy.c index de109acc89a..0c5379666b6 100644 --- a/src/backend/access/heap/vacuumlazy.c +++ b/src/backend/access/heap/vacuumlazy.c @@ -13,7 +13,7 @@ * autovacuum_work_mem) memory space to keep track of dead TIDs. If the * TID store is full, we must call lazy_vacuum to vacuum indexes (and to vacuum * the pages that we've pruned). This frees up the memory space dedicated to - * to store dead TIDs. + * store dead TIDs. * * In practice VACUUM will often complete its initial pass over the target * heap relation without ever running out of space to store TIDs. This means |