#973 closed defect (fixed)
PostgreSQL provider won't work on PostgresSQL >= 12.0
Reported by: | jng | Owned by: | jng |
---|---|---|---|
Priority: | major | Milestone: | 4.1.0 |
Component: | PostgreSQL Provider | Version: | |
Severity: | 3 | Keywords: | |
Cc: | External ID: |
Description
The PostgreSQL provider makes reference to the column pg_attrdef.adsrc
here.
This column has been removed in PostgreSQL 12.0, rendering the provider un-usable for this version of PostgreSQL.
The use of d.adsrc
can be replaced with pg_get_expr(d.adbin, d.adrelid)
. For even more safety, do a PG version check to see whether we can use adsrc
or its replacement.
Note:
See TracTickets
for help on using tickets.
In 7962: