mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fix filtering of system schemas so pg_* is hidden but pg* is not. Fixes #2709
This commit is contained in:
committed by
Dave Page
parent
55e14e4d78
commit
9cfb2f3cbe
@@ -10,7 +10,7 @@ WHERE
|
||||
nsp.oid={{nspid}}::oid AND
|
||||
{% else %}
|
||||
{% if not show_sysobj %}
|
||||
nspname NOT LIKE E'pg\_%' AND
|
||||
nspname NOT LIKE 'pg\_%' AND
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
NOT (
|
||||
|
@@ -11,7 +11,7 @@ WHERE
|
||||
nsp.oid={{nspid}}::oid AND
|
||||
{% else %}
|
||||
{% if not show_sysobj %}
|
||||
nspname NOT LIKE E'pg\_%' AND
|
||||
nspname NOT LIKE 'pg\_%' AND
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
NOT (
|
||||
|
Reference in New Issue
Block a user