>From 3eafe5ef922f3bdf9ea34d8ae408c3b1d0345768 Mon Sep 17 00:00:00 2001
From: Kyotaro Horiguchi <horiguchi.kyotaro@lab.ntt.co.jp>
Date: Thu, 18 Sep 2014 17:07:41 +0900
Subject: [PATCH 1/2] Document for make pg_hba.conf case insensitive

---
 doc/src/sgml/client-auth.sgml |   10 +++++++++-
 1 files changed, 9 insertions(+), 1 deletions(-)

diff --git a/doc/src/sgml/client-auth.sgml b/doc/src/sgml/client-auth.sgml
index 7704f73..5fd0108 100644
--- a/doc/src/sgml/client-auth.sgml
+++ b/doc/src/sgml/client-auth.sgml
@@ -196,8 +196,13 @@ hostnossl  <replaceable>database</replaceable>  <replaceable>user</replaceable>
        Otherwise, this is the name of
        a specific <productname>PostgreSQL</productname> database.
        Multiple database names can be supplied by separating them with
-       commas.  A separate file containing database names can be specified by
+       commas.
+       Quoted identifers excepet unicode escaping are
+       allowed. (See <xref linkend="sql-syntax-identifiers"> for more
+       information).
+       A separate file containing database names can be specified by
        preceding the file name with <literal>@</>.
+       the file name with <literal>@</>.
       </para>
      </listitem>
     </varlistentry>
@@ -219,6 +224,9 @@ hostnossl  <replaceable>database</replaceable>  <replaceable>user</replaceable>
        of the role, directly or indirectly, and not just by virtue of
        being a superuser.
        Multiple user names can be supplied by separating them with commas.
+       Quoted identifers excepet unicode escaping are
+       allowed. (See <xref linkend="sql-syntax-identifiers"> for more
+       information).
        A separate file containing user names can be specified by preceding the
        file name with <literal>@</>.
       </para>
-- 
1.7.1

