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

Commit 1cc33ab

Browse files
Drop other index behind pg_upgrade test issue.
Fix the test failure by dropping the index in question. Missed by commit 57ae788. Per buildfarm member crake. Backpatch: 11-12 only
1 parent 57ae788 commit 1cc33ab

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

src/test/regress/expected/btree_index.out

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,6 +313,7 @@ select reloptions from pg_class WHERE oid = 'btree_idx1'::regclass;
313313
(1 row)
314314

315315
drop index btree_idx1;
316+
drop index btree_idx_err;
316317
--
317318
-- Test for multilevel page deletion
318319
--

src/test/regress/sql/btree_index.sql

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ create index btree_idx_err on btree_test(a) with (vacuum_cleanup_index_scale_fac
141141
alter index btree_idx1 set (vacuum_cleanup_index_scale_factor = 70.0);
142142
select reloptions from pg_class WHERE oid = 'btree_idx1'::regclass;
143143
drop index btree_idx1;
144+
drop index btree_idx_err;
144145

145146
--
146147
-- Test for multilevel page deletion

0 commit comments

Comments
 (0)