pgAdmin III commit: Fix weird behaviour when changing column's collatio - Mailing list pgadmin-hackers

From Guillaume Lelarge
Subject pgAdmin III commit: Fix weird behaviour when changing column's collatio
Date
Msg-id E1Qj4jj-0006Fb-BB@gothos.postgresql.org
Whole thread Raw
List 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 by date:

Previous
From: Thom Brown
Date:
Subject: Altering column collation
Next
From: Guillaume Lelarge
Date:
Subject: Re: Altering column collation