Fixed RESQL test cases for schema

pull/38/head
Nikhil Mohite 2020-12-31 13:54:19 +05:30 committed by Akshay Joshi
parent d1f5511566
commit cd5243ac6d
1 changed files with 4 additions and 1 deletions

View File

@ -6,7 +6,10 @@ SELECT
WHEN 'T' THEN 'deftypeacl'
ELSE 'UNKNOWN - ' || a.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
(SELECT
(acl).grantee as grantee, (acl).grantor AS grantor, (acl).is_grantable AS is_grantable,