Обсуждение: BUG: pgAdmin III - Vacuuming executes incorrect statement

Поиск
Список
Период
Сортировка

BUG: pgAdmin III - Vacuuming executes incorrect statement

От
"Matej Rizman"
Дата:
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









Re: BUG: pgAdmin III - Vacuuming executes incorrect statement

От
"Dave Page"
Дата:

> -----Original Message-----
> From: Matej Rizman [mailto:matej.rizman@guest.arnes.si]
> Sent: 12 July 2003 21:09
> To: pgadmin-support@postgresql.org
> Subject: [pgadmin-support] BUG: pgAdmin III - Vacuuming
> executes incorrect statement
>
>
> 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

Thanks, fixed in CVS.

Regards, Dave.