diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-05-20 14:21:59 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-05-20 14:21:59 +0900 |
commit | bad73cb30ad8395120397073624ff35f21dad5c8 (patch) | |
tree | 89eb76229b1a4c32ace6318dfafd4adfdd3a6fa7 | |
parent | ee62f9ab0c4dca008405d4508e6a9fde1a31b417 (diff) |
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 d0518dc8a4d..b0376d4b542 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -1832,8 +1832,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> |