mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2026-07-29 23:58:09 -05:00
Use PUBLIC (in caps) whenever used as a keyword. Fixes #1138
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
||||
{### SQL to fetch privileges for tablespace ###}
|
||||
SELECT 'spcacl' as deftype, COALESCE(gt.rolname, 'public') grantee, g.rolname grantor,
|
||||
SELECT 'spcacl' as deftype, COALESCE(gt.rolname, 'PUBLIC') grantee, g.rolname grantor,
|
||||
array_agg(privilege_type) as privileges, array_agg(is_grantable) as grantable
|
||||
FROM
|
||||
(SELECT
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
{### SQL to fetch privileges for tablespace ###}
|
||||
SELECT 'spcacl' as deftype, COALESCE(gt.rolname, 'public') grantee, g.rolname grantor,
|
||||
SELECT 'spcacl' as deftype, COALESCE(gt.rolname, 'PUBLIC') grantee, g.rolname grantor,
|
||||
array_agg(privilege_type) as privileges, array_agg(is_grantable) as grantable
|
||||
FROM
|
||||
(SELECT
|
||||
|
||||
Reference in New Issue
Block a user