2011/6/30 Miroslav Šulc <miroslav(dot)sulc(at)startnet(dot)cz>:
> is it correct behavior that when i issue command "VACUUM VERBOSE", i get
> output with DETAIL info, but when i issue "VACUUM FULL VERBOSE", no
> details are displayed?
Yes, this seems OK. PostgreSQL 9.0 has a new implementation of VACUUM
FULL, which behaves more like CLUSTER. This new implementation doesn't
account statistics like a normal VACUUM VERBOSE does.
It seems that PostgreSQL 9.1 re-adds these stats to VACUUM FULL VERBOSE.
Regards,
Marti