mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where the dependents tab wasn't working for PG 15. #5455
changes after review
This commit is contained in:
parent
bf62b9ccb7
commit
ad871694cc
@ -10,7 +10,7 @@ ORDER BY 1, 2
|
||||
{% endif %}
|
||||
|
||||
{% if fetch_dependents %}
|
||||
SELECT cl.relkind, COALESCE(cin.nspname, cln.nspname) as nspname,
|
||||
SELECT cl.relkind::text, COALESCE(cin.nspname, cln.nspname) as nspname,
|
||||
COALESCE(ci.relname, cl.relname) as relname, cl.relname as indname
|
||||
FROM pg_catalog.pg_class cl
|
||||
JOIN pg_catalog.pg_namespace cln ON cl.relnamespace=cln.oid
|
||||
|
Loading…
Reference in New Issue
Block a user