mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where schema diff doesn't show the result of compare if source schema has tables with RLS. Fixes #5998
This commit is contained in:
parent
783b7516a7
commit
64e6570f00
@ -28,3 +28,4 @@ Bug fixes
|
|||||||
| `Issue #5985 <https://redmine.postgresql.org/issues/5985>`_ - Fixed an issue where the process watcher dialog throws an error for the database server which is already removed.
|
| `Issue #5985 <https://redmine.postgresql.org/issues/5985>`_ - Fixed an issue where the process watcher dialog throws an error for the database server which is already removed.
|
||||||
| `Issue #5991 <https://redmine.postgresql.org/issues/5991>`_ - Ensure that dirty indicator (*) should not be visible when renaming the tabs.
|
| `Issue #5991 <https://redmine.postgresql.org/issues/5991>`_ - Ensure that dirty indicator (*) should not be visible when renaming the tabs.
|
||||||
| `Issue #5992 <https://redmine.postgresql.org/issues/5992>`_ - Fixed an issue where escape character is shown when the server/database name has some special characters.
|
| `Issue #5992 <https://redmine.postgresql.org/issues/5992>`_ - Fixed an issue where escape character is shown when the server/database name has some special characters.
|
||||||
|
| `Issue #5998 <https://redmine.postgresql.org/issues/5998>`_ - Fixed an issue where schema diff doesn't show the result of compare if source schema has tables with RLS.
|
||||||
|
@ -632,7 +632,8 @@ class RowSecurityView(PGChildNodeView):
|
|||||||
|
|
||||||
sql = row_security_policies_utils.get_reverse_engineered_sql(
|
sql = row_security_policies_utils.get_reverse_engineered_sql(
|
||||||
self.conn, schema=schema, table=self.table, scid=scid,
|
self.conn, schema=schema, table=self.table, scid=scid,
|
||||||
plid=oid, datlastsysoid=self.datlastsysoid, with_header=False)
|
plid=oid, policy_table_id=tid,
|
||||||
|
datlastsysoid=self.datlastsysoid, with_header=False)
|
||||||
|
|
||||||
drop_sql = ''
|
drop_sql = ''
|
||||||
if drop_req:
|
if drop_req:
|
||||||
|
@ -16,7 +16,7 @@ JOIN pg_namespace n ON n.nspname=rw.schemaname
|
|||||||
JOIN pg_class rel on rel.relname=rw.tablename
|
JOIN pg_class rel on rel.relname=rw.tablename
|
||||||
WHERE
|
WHERE
|
||||||
{% if plid %}
|
{% if plid %}
|
||||||
pl.oid = {{ plid }} and n.oid = {{ scid }} and rel.relfilenode = {{ policy_table_id }};
|
pl.oid = {{ plid }} and n.oid = {{ scid }} and rel.oid = {{ policy_table_id }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if tid %}
|
{% if tid %}
|
||||||
pl.polrelid = {{ tid }};
|
pl.polrelid = {{ tid }};
|
||||||
|
@ -15,7 +15,7 @@ JOIN pg_namespace n ON n.nspname=rw.schemaname
|
|||||||
JOIN pg_class rel on rel.relname=rw.tablename
|
JOIN pg_class rel on rel.relname=rw.tablename
|
||||||
WHERE
|
WHERE
|
||||||
{% if plid %}
|
{% if plid %}
|
||||||
pl.oid = {{ plid }} and n.oid = {{ scid }} and rel.relfilenode = {{ policy_table_id }};
|
pl.oid = {{ plid }} and n.oid = {{ scid }} and rel.oid = {{ policy_table_id }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if tid %}
|
{% if tid %}
|
||||||
pl.polrelid = {{ tid }};
|
pl.polrelid = {{ tid }};
|
||||||
|
@ -15,7 +15,7 @@ JOIN pg_namespace n ON n.nspname=rw.schemaname
|
|||||||
JOIN pg_class rel on rel.relname=rw.tablename
|
JOIN pg_class rel on rel.relname=rw.tablename
|
||||||
WHERE
|
WHERE
|
||||||
{% if plid %}
|
{% if plid %}
|
||||||
pl.oid = {{ plid }} and n.oid = {{ scid }} and rel.relfilenode = {{ policy_table_id }};
|
pl.oid = {{ plid }} and n.oid = {{ scid }} and rel.oid = {{ policy_table_id }};
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if tid %}
|
{% if tid %}
|
||||||
pl.polrelid = {{ tid }};
|
pl.polrelid = {{ tid }};
|
||||||
|
Loading…
Reference in New Issue
Block a user