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

Commit dec8ad3

Browse files
committed
Drop unlogged table after test is done
Another test is constructed on top of regression tests, which does not work correctly with unlogged tables. For now, cope with that by making sure no unlogged table is left behind. Per buildfarm pink after 4fb5c79.
1 parent 4fb5c79 commit dec8ad3

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/test/regress/expected/spgist.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ select count(*)
4141
3
4242
(1 row)
4343

44+
drop table spgist_box_tbl;
4445
-- The point opclass's choose method only uses the spgMatchNode action,
4546
-- so the other actions are not tested by the above. Create an index using
4647
-- text opclass, which uses the others actions.

src/test/regress/sql/spgist.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ create index spgist_box_idx on spgist_box_tbl using spgist (b);
4545
select count(*)
4646
from (values (point(5,5)),(point(8,8)),(point(12,12))) v(p)
4747
where exists(select * from spgist_box_tbl b where b.b && box(v.p,v.p));
48+
drop table spgist_box_tbl;
4849

4950
-- The point opclass's choose method only uses the spgMatchNode action,
5051
-- so the other actions are not tested by the above. Create an index using

0 commit comments

Comments
 (0)