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:
Yogesh Mahajan
2020-08-26 18:16:16 +05:30
committed by Akshay Joshi
parent 8fcf527632
commit f3bde7b5f1
5 changed files with 5 additions and 4 deletions

View File

@@ -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.

View File

@@ -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 (

View File

@@ -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 (

View File

@@ -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 (

View File

@@ -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 (