Version: pgAdmin III, version 0.8.0 Devel (Jul 10 2003).
Steps to reproduce error:
1) connect to database
2) select arbitrary table
3) Tools->Reorganize
4) Select Vacuum (or Analyze, this causes similar error) in dialog box
5) Press Ok.
pgAdmin III executes the following statement to PostgreSQL:
VACUUM VERBOSE ANALYZE Table public.table_name
The correct statement would omit word "Table" and it would be:
VACUUM VERBOSE ANALYZE public.table_name
pgAdmin III also does not inform user about error that occured during VACUUM.
Regards,
Matej Rizman