mirror of
https://github.com/postgres/postgres.git
synced 2026-04-26 00:31:07 -04:00
Drop test user when done with it.
Commit d7f8d26d9 added a test case that created a user, but forgot
to drop it again. This is no good; for one thing, it causes repeated
"make installcheck" runs to fail.
This commit is contained in:
parent
12e037e209
commit
f31111bbe8
2 changed files with 2 additions and 0 deletions
|
|
@ -756,3 +756,4 @@ DROP FUNCTION op_leak(int, int);
|
|||
RESET SESSION AUTHORIZATION;
|
||||
DROP VIEW priv_test_view;
|
||||
DROP TABLE priv_test_tbl;
|
||||
DROP USER regress_stats_user1;
|
||||
|
|
|
|||
|
|
@ -506,3 +506,4 @@ DROP FUNCTION op_leak(int, int);
|
|||
RESET SESSION AUTHORIZATION;
|
||||
DROP VIEW priv_test_view;
|
||||
DROP TABLE priv_test_tbl;
|
||||
DROP USER regress_stats_user1;
|
||||
|
|
|
|||
Loading…
Reference in a new issue