diff options
author | Michael Paquier <michael@paquier.xyz> | 2022-11-02 11:56:28 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2022-11-02 11:56:28 +0900 |
commit | 468a9f37fb69065760054c83d2ee9aa01910a495 (patch) | |
tree | a40b1845487f5dce43dab5829e80811ec22fd90c | |
parent | 23f44276123031d21cffeb699d9863149e1c734f (diff) | |
download | postgresql-468a9f37fb69065760054c83d2ee9aa01910a495.tar.gz postgresql-468a9f37fb69065760054c83d2ee9aa01910a495.zip |
doc: Fix some descriptions related to pg_ident_file_mappings
pg_ident_file_mappings.line_number was described as a line number in
pg_ident.conf for a "rule" number, but this should refer to a "map".
The same inconsistent term was used in the main paragraph describing the
view.
Extracted from a patch by the same author. Issue introduced by
a2c8499 where this view has been added.
Author: Julien Rouhaud
Discussion: https://postgr.es/m/20221026031948.cbrnzgy5e7glsq2d@jrouhaud
Backpatch-through: 15
-rw-r--r-- | doc/src/sgml/system-views.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/system-views.sgml b/doc/src/sgml/system-views.sgml index f8b60469993..1e7289f51e8 100644 --- a/doc/src/sgml/system-views.sgml +++ b/doc/src/sgml/system-views.sgml @@ -1101,7 +1101,7 @@ of the contents of the client user name mapping configuration file, <link linkend="auth-username-maps"><filename>pg_ident.conf</filename></link>. A row appears in this view for each non-empty, non-comment line in the file, - with annotations indicating whether the rule could be applied successfully. + with annotations indicating whether the map could be applied successfully. </para> <para> @@ -1136,7 +1136,7 @@ <structfield>line_number</structfield> <type>int4</type> </para> <para> - Line number of this rule in <filename>pg_ident.conf</filename> + Line number of this map in <filename>pg_ident.conf</filename> </para></entry> </row> |