diff options
author | Bruce Momjian <bruce@momjian.us> | 2012-08-15 11:23:04 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2012-08-15 11:23:15 -0400 |
commit | a973296598f2d1eec48138a2ce4f3e63410d9ed0 (patch) | |
tree | 0b76eb29da9181bdfcc4189649bc0faaed4eb6bb /doc/src | |
parent | eb919e8fde4333d4a627d349a1460b07fc52dd3b (diff) | |
download | postgresql-a973296598f2d1eec48138a2ce4f3e63410d9ed0.tar.gz postgresql-a973296598f2d1eec48138a2ce4f3e63410d9ed0.zip |
Properly escape usernames in initdb, so names with single-quotes are
supported. Also add assert to catch future breakage.
Also, improve documentation that "double"-quotes must be used in
pg_hba.conf (not single quotes).
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/client-auth.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/client-auth.sgml b/doc/src/sgml/client-auth.sgml index 679c40a64ec..97713948df6 100644 --- a/doc/src/sgml/client-auth.sgml +++ b/doc/src/sgml/client-auth.sgml @@ -80,7 +80,7 @@ Records cannot be continued across lines. 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. + Fields can contain white space if the field value is double-quoted. Quoting one of the keywords in a database, user, or address field (e.g., <literal>all</> or <literal>replication</>) makes the word lose its special character, and just match a database, user, or host with that name. |