Skip to content

Commit f31111b

Browse files
committed
Drop test user when done with it.
Commit d7f8d26 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.
1 parent 12e037e commit f31111b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/test/regress/expected/stats_ext.out

+1
Original file line numberDiff line numberDiff line change
@@ -756,3 +756,4 @@ DROP FUNCTION op_leak(int, int);
756756
RESET SESSION AUTHORIZATION;
757757
DROP VIEW priv_test_view;
758758
DROP TABLE priv_test_tbl;
759+
DROP USER regress_stats_user1;

src/test/regress/sql/stats_ext.sql

+1
Original file line numberDiff line numberDiff line change
@@ -506,3 +506,4 @@ DROP FUNCTION op_leak(int, int);
506506
RESET SESSION AUTHORIZATION;
507507
DROP VIEW priv_test_view;
508508
DROP TABLE priv_test_tbl;
509+
DROP USER regress_stats_user1;

0 commit comments

Comments
 (0)