projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bf3827f
)
Doc: Fix description of pg_class.relreplident
author
Michael Paquier
<michael@paquier.xyz>
Wed, 20 May 2020 05:21:45 +0000
(14:21 +0900)
committer
Michael Paquier
<michael@paquier.xyz>
Wed, 20 May 2020 05:21:45 +0000
(14:21 +0900)
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
doc/src/sgml/catalogs.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/catalogs.sgml
b/doc/src/sgml/catalogs.sgml
index 520d3198b5e78ee6baeec8dcd28badb140f7a1a4..76ed2fbea8bdb5aed0ef56ee2236d093a711eee2 100644
(file)
--- a/
doc/src/sgml/catalogs.sgml
+++ b/
doc/src/sgml/catalogs.sgml
@@
-1940,8
+1940,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>