@@ -63,11 +63,11 @@ GRANT DROP ON EXTERNAL CONNECTION "drop-privileged" TO testuser;
6363
6464# Verify that the privileges exist.
6565query-sql
66- SELECT * FROM system.privileges
66+ SELECT username, path, privileges FROM system.privileges order by user_id
6767----
68- root /externalconn/drop-privileged {ALL} {} 1
69- root /externalconn/drop-privileged-dup {ALL} {} 1
70- testuser /externalconn/drop-privileged {DROP} {} 100
68+ root /externalconn/drop-privileged {ALL}
69+ root /externalconn/drop-privileged-dup {ALL}
70+ testuser /externalconn/drop-privileged {DROP}
7171
7272exec-sql user=testuser
7373DROP EXTERNAL CONNECTION "drop-privileged"
@@ -131,11 +131,11 @@ CREATE EXTERNAL CONNECTION 'not-root' AS 'userfile:///bar'
131131
132132# Verify that the privileges exist.
133133query-sql
134- SELECT * FROM system.privileges
134+ SELECT username, path, privileges FROM system.privileges order by user_id
135135----
136- root /externalconn/root {ALL} {} 1
137- testuser /externalconn/not-root {ALL} {} 101
138- testuser /global/ {EXTERNALCONNECTION} {} 101
136+ root /externalconn/root {ALL}
137+ testuser /externalconn/not-root {ALL}
138+ testuser /global/ {EXTERNALCONNECTION}
139139
140140exec-sql user=testuser
141141BACKUP TABLE foo INTO 'external://not-root'
0 commit comments