mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-16 03:32:20 -06:00
Fixed an issue while creating RLS Policy with the name having space. Fixes #5620
This commit is contained in:
parent
18b3cc2683
commit
d265ed9729
@ -3,7 +3,7 @@
|
||||
|
||||
-- DROP POLICY {{ conn|qtIdent(data.name) }} ON {{ conn|qtIdent(data.schema, data.table) }};
|
||||
|
||||
CREATE POLICY {{ data.name }}
|
||||
CREATE POLICY {{ conn|qtIdent(data.name) }}
|
||||
ON {{conn|qtIdent(data.schema, data.table)}}
|
||||
{% if data.event %}
|
||||
FOR {{ data.event|upper }}
|
||||
|
Loading…
Reference in New Issue
Block a user