Fix function name in commet in vacuumlazy.c
Started by Masahiko Sawadaalmost 7 years ago2 messages
Hi,
Attached small patch fixes the function name heap_vacuum_rel in the comment.
s/vacuum_heap_rel/heap_vacuum_rel/
Regards,
--
Masahiko Sawada
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center
Attachments:
fix_heap_vacuum_rel.patchapplication/octet-stream; name=fix_heap_vacuum_rel.patchDownload
diff --git a/src/backend/access/heap/vacuumlazy.c b/src/backend/access/heap/vacuumlazy.c
index 2d317a9..c09eb6e 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.