diff options
author | Michael Paquier <michael@paquier.xyz> | 2020-06-22 13:40:04 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2020-06-22 13:40:04 +0900 |
commit | fe186b4c200b76a5c0f03379fe8645ed1c70a844 (patch) | |
tree | 507d08f0c4f5b8bc1ef6917b84a09a84df418b93 | |
parent | 9550ea3027aa4f290c998afd8836a927df40b09d (diff) | |
download | postgresql-fe186b4c200b76a5c0f03379fe8645ed1c70a844.tar.gz postgresql-fe186b4c200b76a5c0f03379fe8645ed1c70a844.zip |
Fix inconsistent markups in catalogs.sgml
Some fields related to pg_opclass and pg_opfamily were using incorrect
markups, listing them as structname instead of structfield.
Author: Fabien Coelho
Discussion: https://postgr.es/m/alpine.DEB.2.22.394.2006210903560.859381@pseudo
-rw-r--r-- | doc/src/sgml/catalogs.sgml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/src/sgml/catalogs.sgml b/doc/src/sgml/catalogs.sgml index 700271fd40e..5a66115df1e 100644 --- a/doc/src/sgml/catalogs.sgml +++ b/doc/src/sgml/catalogs.sgml @@ -897,7 +897,7 @@ <para> An entry's <structfield>amopmethod</structfield> must match the - <structname>opfmethod</structname> of its containing operator family (including + <structfield>opfmethod</structfield> of its containing operator family (including <structfield>amopmethod</structfield> here is an intentional denormalization of the catalog structure for performance reasons). Also, <structfield>amoplefttype</structfield> and <structfield>amoprighttype</structfield> must match @@ -5064,10 +5064,10 @@ SCRAM-SHA-256$<replaceable><iteration count></replaceable>:<replaceable>&l <para> An operator class's <structfield>opcmethod</structfield> must match the - <structname>opfmethod</structname> of its containing operator family. + <structfield>opfmethod</structfield> of its containing operator family. Also, there must be no more than one <structname>pg_opclass</structname> - row having <structname>opcdefault</structname> true for any given combination of - <structname>opcmethod</structname> and <structname>opcintype</structname>. + row having <structfield>opcdefault</structfield> true for any given combination of + <structfield>opcmethod</structfield> and <structfield>opcintype</structfield>. </para> </sect1> |