From: Heikki Linnakangas Date: Thu, 27 Nov 2008 15:59:28 +0000 (+0000) Subject: Fix obsolete comment regarding FSM truncation. X-Git-Tag: recoveryinfrav9~275 X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=9ec3d9b091b4794e04cc2b7172c9975fdaef2ce3;p=users%2Fsimon%2Fpostgres.git Fix obsolete comment regarding FSM truncation. --- diff --git a/src/backend/catalog/heap.c b/src/backend/catalog/heap.c index fbf1287059..3256062f3b 100644 --- a/src/backend/catalog/heap.c +++ b/src/backend/catalog/heap.c @@ -2276,9 +2276,7 @@ RelationTruncateIndexes(Relation heapRelation) indexInfo = BuildIndexInfo(currentIndex); /* - * Now truncate the actual file (and discard buffers). The indexam - * is responsible for truncating the FSM in index_build(), if - * applicable. + * Now truncate the actual file (and discard buffers). */ RelationTruncate(currentIndex, 0); @@ -2333,7 +2331,7 @@ heap_truncate(List *relids) { Relation rel = lfirst(cell); - /* Truncate the FSM and actual file (and discard buffers) */ + /* Truncate the actual file (and discard buffers) */ RelationTruncate(rel, 0); /* If this relation has indexes, truncate the indexes too */