Re: [pgadmin-hackers] Indexed constraint comments not working

2013-05-26 Thread Dave Page
Thanks - patch applied. On Sun, May 26, 2013 at 10:20 PM, Thom Brown wrote: > Hi all, > > Comments on indexed constraints (primary keys, exclusion constraints > etc.) are failing due to referencing the wrong alias of the relevant > pg_description join in the join clause. > > Test case: > > CREATE

Re: [pgadmin-hackers] Indexed constraint comments not working

2013-05-26 Thread Thom Brown
On 26 May 2013 18:20, Thom Brown wrote: > Hi all, > > Comments on indexed constraints (primary keys, exclusion constraints > etc.) are failing due to referencing the wrong alias of the relevant > pg_description join in the join clause. > > Test case: > > CREATE TABLE test (id int); > > ALTER TABLE

[pgadmin-hackers] Indexed constraint comments not working

2013-05-26 Thread Thom Brown
Hi all, Comments on indexed constraints (primary keys, exclusion constraints etc.) are failing due to referencing the wrong alias of the relevant pg_description join in the join clause. Test case: CREATE TABLE test (id int); ALTER TABLE test ADD CONSTRAINT cnt_x_test EXCLUDE USING btree (id WIT