mirror of
https://github.com/postgres/postgres.git
synced 2026-04-09 11:06:21 -04: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:
parent
d3a557894c
commit
ddd4cc09a6
2 changed files with 0 additions and 4 deletions
|
|
@ -179,5 +179,3 @@ 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;
|
||||
|
|
|
|||
|
|
@ -111,5 +111,3 @@ 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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue