diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2004-07-14 17:55:10 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2004-07-14 17:55:10 +0000 |
commit | a837ed88b128cd53e6a68cc75c2b17976360683f (patch) | |
tree | dbc7c1ac23dc0aec660d7ec997b032a54f5df683 /doc/src | |
parent | bbcee544aa551ada483281723faa6cea3b279e84 (diff) | |
download | postgresql-a837ed88b128cd53e6a68cc75c2b17976360683f.tar.gz postgresql-a837ed88b128cd53e6a68cc75c2b17976360683f.zip |
Detect locale/encoding mismatch in initdb, or pick a suitable encoding
automatically if none was specified.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/initdb.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/initdb.sgml b/doc/src/sgml/ref/initdb.sgml index 7cd0e699a98..bc92cedd18b 100644 --- a/doc/src/sgml/ref/initdb.sgml +++ b/doc/src/sgml/ref/initdb.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/initdb.sgml,v 1.30 2004/06/24 19:26:54 tgl Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/initdb.sgml,v 1.31 2004/07/14 17:55:09 petere Exp $ PostgreSQL documentation --> @@ -121,8 +121,8 @@ PostgreSQL documentation <para> Selects the encoding of the template database. This will also be the default encoding of any database you create later, - unless you override it there. The default is - <literal>SQL_ASCII</literal>. The character sets supported by + unless you override it there. The default is derived from the locale, or + <literal>SQL_ASCII</literal> if that does not work. The character sets supported by the <productname>PostgreSQL</productname> server are described in <xref linkend="multibyte-charset-supported">. </para> |