diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-05-20 14:21:50 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-05-20 14:21:50 +0900 |
commit | 673582d21f30871d9b5d04449e6b2b7acde69209 (patch) | |
tree | 264a414eea2ebe515cdca32868e384300812ee47 | |
parent | 1567ed9b3adc66f00922a9dce06b108c2710d046 (diff) | |
download | postgresql-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.sgml | 6 |
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><iteration count></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> |