From: Heikki Linnakangas Date: Wed, 31 Mar 2010 20:18:10 +0000 (+0000) Subject: Mention in the docs that if special keywords like "sameuser" and X-Git-Tag: REL9_0_ALPHA5~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=259f60e9b6884f3ba4197f1315221c21258a1f23;p=postgresql Mention in the docs that if special keywords like "sameuser" and "replication" are quoted in pg_hba.conf, they lose their special meaning. --- diff --git a/doc/src/sgml/client-auth.sgml b/doc/src/sgml/client-auth.sgml index 785c55050a..59d19383fb 100644 --- a/doc/src/sgml/client-auth.sgml +++ b/doc/src/sgml/client-auth.sgml @@ -1,4 +1,4 @@ - + Client Authentication @@ -77,8 +77,11 @@ a set of records, one per line. Blank lines are ignored, as is any text after the # comment character. A record is made up of a number of fields which are separated by spaces and/or tabs. - Fields can contain white space if the field value is quoted. Records - cannot be continued across lines. + Fields can contain white space if the field value is quoted. + Quoting one of the keywords in database or username field (e.g "all" + or "replication") makes the name lose its special character, and just + match a database or username with that name. Records cannot be + continued across lines.