Skip to content

Commit ff461cc

Browse files
committed
drop schema after test
1 parent 482b88a commit ff461cc

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

nix/tests/expected/plpgsql-check.out

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,7 @@ select * from plpgsql_check_function('v.f1()');
2929
Context: SQL expression "r.c"
3030
(2 rows)
3131

32+
drop schema v cascade;
33+
NOTICE: drop cascades to 2 other objects
34+
DETAIL: drop cascades to table v.t1
35+
drop cascades to function v.f1()

nix/tests/sql/plpgsql-check.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,5 @@ select * from v.f1();
2222

2323
-- use plpgsql_check_function to check the function for errors
2424
select * from plpgsql_check_function('v.f1()');
25+
26+
drop schema v cascade;

0 commit comments

Comments
 (0)