summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorJohn Naylor <john.naylor@postgresql.org>2022-08-18 08:57:13 +0700
committerJohn Naylor <john.naylor@postgresql.org>2022-08-18 09:10:39 +0700
commit7cadaac5130ec60d905c5ad69af98056b54c4e37 (patch)
tree6b55a58d3c8ff9cd94853ac7214cc713b29f4659 /doc/src
parent522ae011fa010a74cd74ef13036df5138751eee2 (diff)
Refer to replication origin roident as "ID" in user facing messages and docs
The table column that stores this is of type oid, but is actually limited to uint16 and has a different path for creating new values. Some of the documentation already referred to it as an ID, so let's standardize on that. While at it, most format strings already use %u, so for consintency change the remaining stragglers using %d. Per suggestions from Tom Lane and Justin Pryzby Discussion: https://www.postgresql.org/message-id/3437166.1659620465%40sss.pgh.pa.us Backpatch to v15
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/replication-origins.sgml4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/replication-origins.sgml b/doc/src/sgml/replication-origins.sgml
index 7e02c4605b2..bb0fb624d25 100644
--- a/doc/src/sgml/replication-origins.sgml
+++ b/doc/src/sgml/replication-origins.sgml
@@ -27,12 +27,12 @@
</para>
<para>
- Replication origins have just two properties, a name and an OID. The name,
+ Replication origins have just two properties, a name and an ID. The name,
which is what should be used to refer to the origin across systems, is
free-form <type>text</type>. It should be used in a way that makes conflicts
between replication origins created by different replication solutions
unlikely; e.g., by prefixing the replication solution's name to it.
- The OID is used only to avoid having to store the long version
+ The ID is used only to avoid having to store the long version
in situations where space efficiency is important. It should never be shared
across systems.
</para>