2011/6/30 Miroslav Šulc <[email protected]>: > 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 -- Sent via pgsql-general mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-general
