Encoding change actually works)
The following documentation comment has been logged on the website:
Page: https://www.postgresql.org/docs/9.4/static/sql-createdatabase.html
Description:
https://www.postgresql.org/docs/9.4/static/sql-createdatabase.html
Says:
CREATE DATABASE music ENCODING 'LATIN1' TEMPLATE template0;
that did not work. Whereas:
CREATE DATABASE music ENCODING 'LATIN1' TEMPLATE template0 LC_COLLATE='C'
LC_CTYPE='C';
sure DOES seem to work.
--
Sent via pgsql-docs mailing list (pgsql-docs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-docs
On 6/27/16 4:24 AM, marc+pgsql@milestonerdl.com wrote:
https://www.postgresql.org/docs/9.4/static/sql-createdatabase.html
Says:
CREATE DATABASE music ENCODING 'LATIN1' TEMPLATE template0;that did not work. Whereas:
CREATE DATABASE music ENCODING 'LATIN1' TEMPLATE template0 LC_COLLATE='C'
LC_CTYPE='C';sure DOES seem to work.
How about the attached patch with some refreshed examples?
--
Peter Eisentraut http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services