Skip to content

Commit

Permalink
logictest: add sort order to logic test
Browse files Browse the repository at this point in the history
Fixes a flakey test that lacked a sort order.

Release note: None
  • Loading branch information
adityamaru committed Aug 18, 2022
1 parent 0e340c7 commit 2f9d8be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ statement ok
GRANT USAGE,DROP ON EXTERNAL CONNECTION foo TO testuser

query TTTT
SELECT * FROM system.privileges
SELECT * FROM system.privileges ORDER by username
----
root /externalconn/foo {ALL} {}
testuser /externalconn/foo {DROP,USAGE} {}
Expand All @@ -31,7 +31,7 @@ statement ok
REVOKE USAGE,DROP ON EXTERNAL CONNECTION foo FROM testuser

query TTTT
SELECT * FROM system.privileges
SELECT * FROM system.privileges ORDER by username
----
root /externalconn/foo {ALL} {}

Expand Down

0 comments on commit 2f9d8be

Please sign in to comment.