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:
Álvaro Herrera
2026-04-30 22:57:24 +02:00
parent 6cf49e804c
commit 2fd787d0aa
2 changed files with 0 additions and 7 deletions
-3
View File
@@ -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;
-4
View File
@@ -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;