mirror of
https://github.com/postgres/postgres.git
synced 2025-05-12 16:21:30 +03:00
Drop other index behind pg_upgrade test issue.
Fix the test failure by dropping the index in question. Missed by commit 57ae7885. Per buildfarm member crake. Backpatch: 11-12 only
This commit is contained in:
parent
57ae7885cf
commit
1cc33ab95c
@ -313,6 +313,7 @@ select reloptions from pg_class WHERE oid = 'btree_idx1'::regclass;
|
|||||||
(1 row)
|
(1 row)
|
||||||
|
|
||||||
drop index btree_idx1;
|
drop index btree_idx1;
|
||||||
|
drop index btree_idx_err;
|
||||||
--
|
--
|
||||||
-- Test for multilevel page deletion
|
-- Test for multilevel page deletion
|
||||||
--
|
--
|
||||||
|
@ -141,6 +141,7 @@ create index btree_idx_err on btree_test(a) with (vacuum_cleanup_index_scale_fac
|
|||||||
alter index btree_idx1 set (vacuum_cleanup_index_scale_factor = 70.0);
|
alter index btree_idx1 set (vacuum_cleanup_index_scale_factor = 70.0);
|
||||||
select reloptions from pg_class WHERE oid = 'btree_idx1'::regclass;
|
select reloptions from pg_class WHERE oid = 'btree_idx1'::regclass;
|
||||||
drop index btree_idx1;
|
drop index btree_idx1;
|
||||||
|
drop index btree_idx_err;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Test for multilevel page deletion
|
-- Test for multilevel page deletion
|
||||||
|
Loading…
x
Reference in New Issue
Block a user