mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Modified EPAS templates to support schema restriction.
This commit is contained in:
parent
0d92059155
commit
cb1cdd1b23
@ -18,4 +18,8 @@ WHERE
|
||||
NOT (
|
||||
{{ CATALOGS.LIST('nsp') }}
|
||||
)
|
||||
{% if schema_restrictions %}
|
||||
AND
|
||||
nsp.nspname in ({{schema_restrictions}})
|
||||
{% endif %}
|
||||
ORDER BY nspname;
|
||||
|
@ -44,4 +44,8 @@ WHERE
|
||||
NOT (
|
||||
{{ CATALOGS.LIST('nsp') }}
|
||||
)
|
||||
{% if schema_restrictions %}
|
||||
AND
|
||||
nsp.nspname in ({{schema_restrictions}})
|
||||
{% endif %}
|
||||
ORDER BY 1, nspname;
|
||||
|
@ -18,4 +18,8 @@ WHERE
|
||||
NOT (
|
||||
{{ CATALOGS.LIST('nsp') }}
|
||||
)
|
||||
{% if schema_restrictions %}
|
||||
AND
|
||||
nsp.nspname in ({{schema_restrictions}})
|
||||
{% endif %}
|
||||
ORDER BY nspname;
|
||||
|
@ -51,4 +51,8 @@ WHERE
|
||||
NOT (
|
||||
{{ CATALOGS.LIST('nsp') }}
|
||||
)
|
||||
{% if schema_restrictions %}
|
||||
AND
|
||||
nsp.nspname in ({{schema_restrictions}})
|
||||
{% endif %}
|
||||
ORDER BY 1, nspname;
|
||||
|
Loading…
Reference in New Issue
Block a user