pgAdmin III commit: Fix weird behaviour when changing column's collatio

Поиск
Список
Период
Сортировка
От Guillaume Lelarge
Тема pgAdmin III commit: Fix weird behaviour when changing column's collatio
Дата
Msg-id E1Qj4jj-0006Fb-BB@gothos.postgresql.org
обсуждение исходный текст
Список pgadmin-hackers
Fix weird behaviour when changing column's collation

If a user opens a table properties dialog, and tries to change the collation
of a column, he gets a DROP COLUMN followed by a ADD COLUMN statements.
If a user opens a column properties dialog (without the table properties
dialog first), and tries to change the collation, he gets nothing.

Both behaviour are wrong. We should get an ALTER TABLE... ALTER COLUMN...
TYPE... COLLATION... This patch fixes both issues.

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=5d43d434655c850ad1c2506036d0fbacde2f39a6
Author: Thom Brown <thom@linux.com>

Modified Files
--------------
pgadmin/dlg/dlgColumn.cpp |    3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)


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

Предыдущее
От: Thom Brown
Дата:
Сообщение: Altering column collation
Следующее
От: Guillaume Lelarge
Дата:
Сообщение: Re: Altering column collation