fix: Make views pk and fk schema query compatible with postgres v15
This commit is contained in:
@@ -66,6 +66,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|||||||
- #2342, Fix inaccurate result count when an inner embed was selected after a normal embed in the query string - @laurenceisla
|
- #2342, Fix inaccurate result count when an inner embed was selected after a normal embed in the query string - @laurenceisla
|
||||||
- #2376, OPTIONS requests no longer start an empty database transaction - @steve-chavez
|
- #2376, OPTIONS requests no longer start an empty database transaction - @steve-chavez
|
||||||
- #2395, Allow using columns with dollar sign($) without double quoting in filters and `select` - @steve-chavez
|
- #2395, Allow using columns with dollar sign($) without double quoting in filters and `select` - @steve-chavez
|
||||||
|
- #2410, Fix loop crash error on startup in Postgres 15 beta 2. Log: "UNION types \"char\" and text cannot be matched". - @yevon
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
|||||||
@@ -656,7 +656,7 @@ allViewsKeyDependencies =
|
|||||||
pks_fks as (
|
pks_fks as (
|
||||||
-- pk + fk referencing col
|
-- pk + fk referencing col
|
||||||
select
|
select
|
||||||
contype,
|
contype::text as contype,
|
||||||
conname,
|
conname,
|
||||||
conrelid as resorigtbl,
|
conrelid as resorigtbl,
|
||||||
unnest(conkey) as resorigcol
|
unnest(conkey) as resorigcol
|
||||||
|
|||||||
Reference in New Issue
Block a user