Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit f183d17

Browse files
committed
Teardown was fixed.
1 parent b8d4123 commit f183d17

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/test/isolation/specs/snapfs_get_snapshot_size.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
teardown {
22
select pg_remove_snapshot( ( select recent_snapshot from pg_control_snapshot() ) );
3-
drop table foo;
3+
DROP TABLE IF EXISTS foo;
44
}
55

66
session "s1"

src/test/isolation/specs/snapfs_get_snapshot_timestamp.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
teardown {
44
select pg_remove_snapshot( ( select recent_snapshot from pg_control_snapshot() ) );
5-
drop table foo;
5+
DROP TABLE IF EXISTS foo;
66
}
77

88
session "s1"

src/test/isolation/specs/snapfs_set_backend_snapshot_sequence.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ setup {
88
teardown {
99
select pg_set_backend_snapshot( 0 );
1010
select pg_remove_snapshot( ( select recent_snapshot from pg_control_snapshot() ) );
11-
drop sequence seq1;
11+
DROP SEQUENCE IF EXISTS seq1;
1212
}
1313

1414
session "s1"

0 commit comments

Comments
 (0)