Fixed RESQL test cases for schema
parent
d1f5511566
commit
cd5243ac6d
|
@ -6,7 +6,10 @@ SELECT
|
||||||
WHEN 'T' THEN 'deftypeacl'
|
WHEN 'T' THEN 'deftypeacl'
|
||||||
ELSE 'UNKNOWN - ' || a.deftype
|
ELSE 'UNKNOWN - ' || a.deftype
|
||||||
END AS deftype,
|
END AS deftype,
|
||||||
COALESCE(gt.rolname, 'PUBLIC') grantee, g.rolname grantor, array_agg(a.privilege_type) as privileges, array_agg(a.is_grantable) as grantable
|
COALESCE(gt.rolname, 'PUBLIC') grantee,
|
||||||
|
g.rolname grantor,
|
||||||
|
array_agg(a.privilege_type order by a.privilege_type) as privileges,
|
||||||
|
array_agg(a.is_grantable) as grantable
|
||||||
FROM
|
FROM
|
||||||
(SELECT
|
(SELECT
|
||||||
(acl).grantee as grantee, (acl).grantor AS grantor, (acl).is_grantable AS is_grantable,
|
(acl).grantee as grantee, (acl).grantor AS grantor, (acl).is_grantable AS is_grantable,
|
||||||
|
|
Loading…
Reference in New Issue