mirror of
https://github.com/postgres/postgres.git
synced 2026-05-16 11:29:49 -04:00
Remove working test that was supposed to fail
I evidently failed to review the expected output in commit 832e220d99
carefully enough. Per complaint from Tom Lane.
Discussion: https://postgr.es/m/769631.1777575242@sss.pgh.pa.us
This commit is contained in:
parent
6cf49e804c
commit
2fd787d0aa
2 changed files with 0 additions and 7 deletions
|
|
@ -837,9 +837,6 @@ ALTER TABLE repack_conc_replident REPLICA IDENTITY NOTHING;
|
|||
REPACK (CONCURRENTLY) repack_conc_replident;
|
||||
ERROR: cannot repack relation "repack_conc_replident"
|
||||
HINT: Relation "repack_conc_replident" has insufficient replication identity.
|
||||
-- Doesn't support tables with REPLICA IDENTITY FULL, even if they have a primary key
|
||||
ALTER TABLE repack_conc_replident REPLICA IDENTITY FULL;
|
||||
REPACK (CONCURRENTLY) repack_conc_replident;
|
||||
-- Doesn't support tables without a primary key or replica identity index
|
||||
ALTER TABLE repack_conc_replident DROP CONSTRAINT repack_conc_replident_pkey;
|
||||
ALTER TABLE repack_conc_replident REPLICA IDENTITY DEFAULT;
|
||||
|
|
|
|||
|
|
@ -418,10 +418,6 @@ CREATE TABLE repack_conc_replident (i int PRIMARY KEY);
|
|||
ALTER TABLE repack_conc_replident REPLICA IDENTITY NOTHING;
|
||||
REPACK (CONCURRENTLY) repack_conc_replident;
|
||||
|
||||
-- Doesn't support tables with REPLICA IDENTITY FULL, even if they have a primary key
|
||||
ALTER TABLE repack_conc_replident REPLICA IDENTITY FULL;
|
||||
REPACK (CONCURRENTLY) repack_conc_replident;
|
||||
|
||||
-- Doesn't support tables without a primary key or replica identity index
|
||||
ALTER TABLE repack_conc_replident DROP CONSTRAINT repack_conc_replident_pkey;
|
||||
ALTER TABLE repack_conc_replident REPLICA IDENTITY DEFAULT;
|
||||
|
|
|
|||
Loading…
Reference in a new issue