altering table properties

Поиск
Список
Период
Сортировка
От Miha Radej
Тема altering table properties
Дата
Msg-id 4333F18E.3020904@siix.com
обсуждение исходный текст
Ответ на wrong order of drop ... create ... sentences  (Diego Gil <diego@adminsa.com>)
Ответы Re: altering table properties
Список pgadmin-hackers
hi!

thank you for fixing the sql query order in svn. i have, however,
noticed some other things which might be annoying:

when wanting to change a table name and a column name at the same time,
pgadmin produces this (this is all done via the properties option from
the context menu):

ALTER Table budgettype RENAME TO budget_type;
ALTER TABLE budgettype RENAME budgettype_name  TO budget_type_name;

which will fail because the table name ought to get changed with the
first query. pgadmin keeps working with the original table name instead
of using the new table name after issuing the rename table statement.
and, not wanting to nag, but to be consistent, the keyword "Table" ought
to be uppercase, like everything else ;)

also, i wanted to remove a constraint (primary key) and add a new one
and pgadmin produced thie following code:

  CONSTRAINT ALTER TABLE budget_type DROP CONSTRAINT pkey_budgettype;
ALTER TABLE budget_type ADDpkey_budget_type PRIMARY KEY (id);


there is an unneccesary " CONSTRAINT " in front of the first query and
in the second query there is no space between the ADD keyword and
constraint name.

i am using pgadmin3 compiled from svn (fresh checkout from an hour ago),
on suse linux 9.3.

cheers,
Miha

В списке pgadmin-hackers по дате отправления:

Предыдущее
От: svn@pgadmin.org
Дата:
Сообщение: SVN Commit by dpage: r4459 - in trunk/pgadmin3/src: dlg schema
Следующее
От: Miha Radej
Дата:
Сообщение: Re: altering table properties