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
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
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