mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Some cleanup for change of collate and ctype fields to type text
Some cleanup for commit 54637508f8
:
Reformat pg_database.dat to reflect the new field order. Also update
the corresponding example in bki.sgml. Reorder the way the fields are
filled in dbcommands.c to correspond to the new order.
This commit is contained in:
@ -175,19 +175,20 @@
|
||||
will demonstrate the key features:
|
||||
</para>
|
||||
|
||||
<programlisting>
|
||||
<!-- The "slight modification" is the apostrophe in the description. -->
|
||||
<programlisting><![CDATA[
|
||||
[
|
||||
|
||||
# A comment could appear here.
|
||||
{ oid => '1', oid_symbol => 'TemplateDbOid',
|
||||
descr => 'database\'s default template',
|
||||
datname => 'template1', encoding => 'ENCODING', datcollate => 'LC_COLLATE',
|
||||
datctype => 'LC_CTYPE', datistemplate => 't', datallowconn => 't',
|
||||
datconnlimit => '-1', datfrozenxid => '0',
|
||||
datminmxid => '1', dattablespace => 'pg_default', datacl => '_null_' },
|
||||
{ oid => '1', oid_symbol => 'TemplateDbOid',
|
||||
descr => 'database\'s default template',
|
||||
datname => 'template1', encoding => 'ENCODING', datistemplate => 't',
|
||||
datallowconn => 't', datconnlimit => '-1', datfrozenxid => '0',
|
||||
datminmxid => '1', dattablespace => 'pg_default', datcollate => 'LC_COLLATE',
|
||||
datctype => 'LC_CTYPE', datacl => '_null_' },
|
||||
|
||||
]
|
||||
</programlisting>
|
||||
]]></programlisting>
|
||||
|
||||
<para>
|
||||
Points to note:
|
||||
|
Reference in New Issue
Block a user