From: Michael Paquier Date: Wed, 19 Jan 2022 01:38:06 +0000 (+0900) Subject: doc: Fix description of pg_replication_origin_oid() in error case X-Git-Tag: REL_10_20~26 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cb91cb8aaccede6c0b4bde2be79742dfc4b996c0;p=thirdparty%2Fpostgresql.git doc: Fix description of pg_replication_origin_oid() in error case This function returns NULL if the replication origin given in input argument does not exist, contrary to what the docs described previously. Author: Ian Barwick Discussion: https://postgr.es/m/CAB8KJ=htJjBL=103URqjOxV2mqb4rjphDpMeKdyKq_QXt6h05w@mail.gmail.com Backpatch-through: 10 --- diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 39904dd8feb..4c7ff22d6be 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -19442,8 +19442,9 @@ postgres=# SELECT * FROM pg_walfile_name_offset(pg_stop_backup()); oid - Lookup a replication origin by name and return the internal id. If no - corresponding replication origin is found an error is thrown. + Lookup a replication origin by name and return the internal ID. If + no such replication origin is found, NULL is + returned.