From: Michael Paquier Date: Wed, 20 May 2020 05:22:03 +0000 (+0900) Subject: Doc: Fix description of pg_class.relreplident X-Git-Tag: REL9_5_23~67 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=781b6a3ea7eaadf8813ad86b5842a8148b01bbd9;p=thirdparty%2Fpostgresql.git Doc: Fix description of pg_class.relreplident The description missed a comma and lacked an explanation of what happens with REPLICA IDENTITY USING INDEX when the dependent index is dropped. Author: Marina Polyakova Reviewed-by: Daniel Gustafsson, Michael Paquier Discussion: https://postgr.es/m/ad1a0badc32658b1bbb07aa312346a1d@postgrespro.ru Backpatch-through: 9.5 --- diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 93c6c117b25..ac4347f1286 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1987,8 +1987,10 @@ Columns used to form replica identity for rows: d = default (primary key, if any), n = nothing, - f = all columns - i = index with indisreplident set, or default + f = all columns, + i = index with + indisreplident set (same as nothing if the + index used has been dropped)