1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-06 19:59:18 +03:00

Restore vacuum_cleanup_index_scale_factor coverage.

Revert two recent commits that had btree_index.sql drop regression test
indexes rather than leave them behind for pg_dump testing.

This is intended to restore pg_upgrade coverage of indexes with the
vacuum_cleanup_index_scale_factor storage parameter set on buildfarm
member crake.

Backpatch: 11-12 only
This commit is contained in:
Peter Geoghegan 2021-03-11 12:52:37 -08:00
parent 56defbdd0f
commit ce54c024d9
2 changed files with 0 additions and 4 deletions

View File

@ -312,8 +312,6 @@ select reloptions from pg_class WHERE oid = 'btree_idx1'::regclass;
{vacuum_cleanup_index_scale_factor=70.0}
(1 row)
drop index btree_idx1;
drop index btree_idx_err;
--
-- Test for multilevel page deletion
--

View File

@ -140,8 +140,6 @@ create index btree_idx_err on btree_test(a) with (vacuum_cleanup_index_scale_fac
-- Simple ALTER INDEX
alter index btree_idx1 set (vacuum_cleanup_index_scale_factor = 70.0);
select reloptions from pg_class WHERE oid = 'btree_idx1'::regclass;
drop index btree_idx1;
drop index btree_idx_err;
--
-- Test for multilevel page deletion