aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2020-05-20 14:21:50 +0900
committerMichael Paquier <michael@paquier.xyz>2020-05-20 14:21:50 +0900
commit673582d21f30871d9b5d04449e6b2b7acde69209 (patch)
tree264a414eea2ebe515cdca32868e384300812ee47
parent1567ed9b3adc66f00922a9dce06b108c2710d046 (diff)
downloadpostgresql-673582d21f30871d9b5d04449e6b2b7acde69209.tar.gz
postgresql-673582d21f30871d9b5d04449e6b2b7acde69209.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 0fef0ca6152..7c2cef606c4 100644
--- a/doc/src/sgml/catalogs.sgml
+++ b/doc/src/sgml/catalogs.sgml
@@ -1939,8 +1939,10 @@ SCRAM-SHA-256$<replaceable>&lt;iteration count&gt;</replaceable>:<replaceable>&l
Columns used to form <quote>replica identity</quote> for rows:
<literal>d</literal> = default (primary key, if any),
<literal>n</literal> = nothing,
- <literal>f</literal> = all columns
- <literal>i</literal> = index with <structfield>indisreplident</structfield> set, or default
+ <literal>f</literal> = all columns,
+ <literal>i</literal> = index with
+ <structfield>indisreplident</structfield> set (same as nothing if the
+ index used has been dropped)
</entry>
</row>