1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-29 16:21:20 +03:00

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
This commit is contained in:
Michael Paquier 2020-05-20 14:21:54 +09:00
parent b88ca12ba8
commit 7adbd2520b

View File

@ -1900,8 +1900,10 @@ SCRAM-SHA-256$<replaceable>&lt;iteration count&gt;</>:<replaceable>&lt;salt&gt;<
Columns used to form <quote>replica identity</> for rows: Columns used to form <quote>replica identity</> for rows:
<literal>d</> = default (primary key, if any), <literal>d</> = default (primary key, if any),
<literal>n</> = nothing, <literal>n</> = nothing,
<literal>f</> = all columns <literal>f</> = all columns,
<literal>i</> = index with <structfield>indisreplident</structfield> set, or default <literal>i</> = index with
<structfield>indisreplident</structfield> set (same as nothing if the
index used has been dropped)
</entry> </entry>
</row> </row>