Fix pg_dump's failure to dump REPLICA IDENTITY for constraint indexes. pg_dump knew about printing ALTER TABLE ... REPLICA IDENTITY USING INDEX for indexes declared as indexes, but it failed to print that for indexes declared as unique or primary-key constraints. Per report from Achilleas Mantzios.
This has been broken since the feature was introduced, AFAICS. Back-patch to 9.4. Discussion: https://postgr.es/m/[email protected] Branch ------ REL9_6_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/8c7f64b0ed32b8b7d62055efc153ddd17b4a8334 Modified Files -------------- src/bin/pg_dump/pg_dump.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+)
