mirror of
https://github.com/postgres/postgres.git
synced 2026-05-09 10:19:35 -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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user