aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2020-05-20 14:22:03 +0900
committerMichael Paquier <michael@paquier.xyz>2020-05-20 14:22:03 +0900
commit781b6a3ea7eaadf8813ad86b5842a8148b01bbd9 (patch)
tree85cd84d05a2e7bf991bf28f6ac2d7be329fed433
parent7e6674e436b7070216813ca46d367400c0297a1c (diff)
downloadpostgresql-781b6a3ea7eaadf8813ad86b5842a8148b01bbd9.tar.gz
postgresql-781b6a3ea7eaadf8813ad86b5842a8148b01bbd9.zip
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
-rw-r--r--doc/src/sgml/catalogs.sgml6
1 files changed, 4 insertions, 2 deletions
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 <quote>replica identity</> for rows:
<literal>d</> = default (primary key, if any),
<literal>n</> = nothing,
- <literal>f</> = all columns
- <literal>i</> = index with <structfield>indisreplident</structfield> set, or default
+ <literal>f</> = all columns,
+ <literal>i</> = index with
+ <structfield>indisreplident</structfield> set (same as nothing if the
+ index used has been dropped)
</entry>
</row>