Fixed RESQL test cases for Column.

This commit is contained in:
Nikhil Mohite 2020-12-30 12:25:07 +05:30 committed by Akshay Joshi
parent 98b7603ebd
commit 26bbc0e877

View File

@ -1,4 +1,8 @@
SELECT 'attacl' as deftype, COALESCE(gt.rolname, 'PUBLIC') grantee, g.rolname grantor, array_agg(privilege_type) as privileges, array_agg(is_grantable) as grantable
SELECT 'attacl' as deftype,
COALESCE(gt.rolname, 'PUBLIC') grantee,
g.rolname grantor,
array_agg(privilege_type order by privilege_type) as privileges,
array_agg(is_grantable) as grantable
FROM
(SELECT
d.grantee, d.grantor, d.is_grantable,