From 9cc8c84e738737baed4b7edeaaa2bee35ad38847 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Thu, 7 Oct 2010 21:46:46 -0400 Subject: Improve logging in VACUUM FULL VERBOSE and CLUSTER VERBOSE. This patch resurrects some of the information that could be logged by the old, now-dead implementation of VACUUM FULL, in particular counts of live and dead tuples and the time taken for the table rebuild proper. There's still no logging about the ensuing index rebuilds, though. Itagaki Takahiro --- src/include/access/rewriteheap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/include/access') diff --git a/src/include/access/rewriteheap.h b/src/include/access/rewriteheap.h index b89dc66676b..db51d7cfafc 100644 --- a/src/include/access/rewriteheap.h +++ b/src/include/access/rewriteheap.h @@ -25,6 +25,6 @@ extern RewriteState begin_heap_rewrite(Relation NewHeap, extern void end_heap_rewrite(RewriteState state); extern void rewrite_heap_tuple(RewriteState state, HeapTuple oldTuple, HeapTuple newTuple); -extern void rewrite_heap_dead_tuple(RewriteState state, HeapTuple oldTuple); +extern bool rewrite_heap_dead_tuple(RewriteState state, HeapTuple oldTuple); #endif /* REWRITE_HEAP_H */ -- cgit v1.2.3