BUG #15997: PgManager giving error while looking a table with PgV12

Lists: pgsql-bugs
From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: nwakde(at)entrata(dot)com
Subject: BUG #15997: PgManager giving error while looking a table with PgV12
Date: 2019-09-09 18:33:19
Message-ID: 15997-a036f9c07b87676a@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 15997
Logged by: Netaji Wakde
Email address: nwakde(at)entrata(dot)com
PostgreSQL version: 12beta1
Operating system: Windows 10
Description:

PgManager giving error while looking a table with PgV12.

Error: column "consrc" does not exist.


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: nwakde(at)entrata(dot)com
Cc: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: BUG #15997: PgManager giving error while looking a table with PgV12
Date: 2019-09-09 18:48:28
Message-ID: 27042.1568054908@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
> PgManager giving error while looking a table with PgV12.
> Error: column "consrc" does not exist.

Evidently PgManager needs to be updated to work with PG 12 ...
or, really, prior versions too, because that column was
deprecated for a long time before we finally removed it.
Use of the pg_get_constraintdef() function is preferable.

You'll need to pester the author of PgManager to fix it.

regards, tom lane