From: Tom Lane Date: Mon, 24 Jun 2019 16:36:51 +0000 (-0400) Subject: Drop test user when done with it. X-Git-Tag: REL_12_BETA3~144 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f31111bbe81db0e84fb486c6423a234c47091b30;p=thirdparty%2Fpostgresql.git 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. --- diff --git a/src/test/regress/expected/stats_ext.out b/src/test/regress/expected/stats_ext.out index c893f01c55c..9e770786cc4 100644 --- a/src/test/regress/expected/stats_ext.out +++ b/src/test/regress/expected/stats_ext.out @@ -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; diff --git a/src/test/regress/sql/stats_ext.sql b/src/test/regress/sql/stats_ext.sql index 5138ce09548..7a77d20446e 100644 --- a/src/test/regress/sql/stats_ext.sql +++ b/src/test/regress/sql/stats_ext.sql @@ -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;