diff options
author | Michael Paquier <michael@paquier.xyz> | 2019-01-18 13:53:43 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2019-01-18 13:53:43 +0900 |
commit | 80971bc206b06deebe71e722f49949f6df4ce642 (patch) | |
tree | a306b8d31df87bf216be6d800cb741bbaeb1ed49 /src/backend | |
parent | 396676b0ec4bd45969b9089ffcabde3b4331c1c3 (diff) | |
download | postgresql-80971bc206b06deebe71e722f49949f6df4ce642.tar.gz postgresql-80971bc206b06deebe71e722f49949f6df4ce642.zip |
Fix incorrect relation name in comment of vacuumlazy.c
Author: Masahiko Sawada
Discussion: https://postgr.es/m/CAD21AoBiOiapB7YGbWRfNZji3cs1gkEwv=uGLTemaZ9yNKK1DA@mail.gmail.com
Diffstat (limited to 'src/backend')
-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 2d317a94620..c09eb6eff88 100644 --- a/src/backend/access/heap/vacuumlazy.c +++ b/src/backend/access/heap/vacuumlazy.c @@ -178,7 +178,7 @@ static bool heap_page_is_all_visible(Relation rel, Buffer buf, /* - * vacuum_heap_rel() -- perform VACUUM for one heap relation + * heap_vacuum_rel() -- perform VACUUM for one heap relation * * This routine vacuums a single heap, cleans out its indexes, and * updates its relpages and reltuples statistics. |