mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure that schema names starting with 'pg' should be visible in browser tree when standard_conforming_strings is set to off. Fixes #4216
This commit is contained in:
committed by
Akshay Joshi
parent
8fcf527632
commit
f3bde7b5f1
@@ -21,6 +21,7 @@ Housekeeping
|
|||||||
Bug fixes
|
Bug fixes
|
||||||
*********
|
*********
|
||||||
|
|
||||||
|
| `Issue #4216 <https://redmine.postgresql.org/issues/4216>`_ - Ensure that schema names starting with 'pg' should be visible in browser tree when standard_conforming_strings is set to off.
|
||||||
| `Issue #5722 <https://redmine.postgresql.org/issues/5722>`_ - Ensure that the user should be able to drop the database even if it is connected.
|
| `Issue #5722 <https://redmine.postgresql.org/issues/5722>`_ - Ensure that the user should be able to drop the database even if it is connected.
|
||||||
| `Issue #5748 <https://redmine.postgresql.org/issues/5748>`_ - Fixed incorrect reverse engineering SQL for Foreign key when creating a table.
|
| `Issue #5748 <https://redmine.postgresql.org/issues/5748>`_ - Fixed incorrect reverse engineering SQL for Foreign key when creating a table.
|
||||||
| `Issue #5751 <https://redmine.postgresql.org/issues/5751>`_ - Enable the 'Configure' and 'View log' menu option when the server taking longer than usual time to start.
|
| `Issue #5751 <https://redmine.postgresql.org/issues/5751>`_ - Enable the 'Configure' and 'View log' menu option when the server taking longer than usual time to start.
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ WHERE
|
|||||||
nsp.oid={{scid}}::oid AND
|
nsp.oid={{scid}}::oid AND
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if not show_sysobj %}
|
{% if not show_sysobj %}
|
||||||
nspname NOT LIKE 'pg\_%' AND
|
nspname NOT LIKE 'pg!_%' escape '!' AND
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
NOT (
|
NOT (
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ WHERE
|
|||||||
nsp.oid={{scid}}::oid AND
|
nsp.oid={{scid}}::oid AND
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if not show_sysobj %}
|
{% if not show_sysobj %}
|
||||||
nspname NOT LIKE 'pg\_%' AND
|
nspname NOT LIKE 'pg!_%' escape '!' AND
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
NOT (
|
NOT (
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ WHERE
|
|||||||
nsp.oid={{scid}}::oid AND
|
nsp.oid={{scid}}::oid AND
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if not show_sysobj %}
|
{% if not show_sysobj %}
|
||||||
nspname NOT LIKE 'pg\_%' AND
|
nspname NOT LIKE 'pg!_%' escape '!' AND
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
NOT (
|
NOT (
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ WHERE
|
|||||||
nsp.oid={{scid}}::oid AND
|
nsp.oid={{scid}}::oid AND
|
||||||
{% else %}
|
{% else %}
|
||||||
{% if not show_sysobj %}
|
{% if not show_sysobj %}
|
||||||
nspname NOT LIKE 'pg\_%' AND
|
nspname NOT LIKE 'pg!_%' escape '!' AND
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
NOT (
|
NOT (
|
||||||
|
|||||||
Reference in New Issue
Block a user