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:
Tom Lane 2019-06-24 12:36:51 -04:00
parent 12e037e209
commit f31111bbe8
2 changed files with 2 additions and 0 deletions

View File

@ -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;

View File

@ -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;