mirror of
https://github.com/postgres/postgres.git
synced 2026-03-01 12:50:55 -05:00
27 lines
966 B
Text
27 lines
966 B
Text
|
|
#----------------------------------------------------------------------
|
||
|
|
#
|
||
|
|
# pg_database.dat
|
||
|
|
# Initial contents of the pg_database system relation.
|
||
|
|
#
|
||
|
|
# Portions Copyright (c) 1996-2018, PostgreSQL Global Development Group
|
||
|
|
# Portions Copyright (c) 1994, Regents of the University of California
|
||
|
|
#
|
||
|
|
# src/include/catalog/pg_database.dat
|
||
|
|
#
|
||
|
|
#----------------------------------------------------------------------
|
||
|
|
|
||
|
|
[
|
||
|
|
|
||
|
|
# LC_COLLATE and LC_CTYPE will be replaced at initdb time with user choices
|
||
|
|
# that might contain non-word characters, so we must double-quote them.
|
||
|
|
|
||
|
|
{ oid => '1', oid_symbol => 'TemplateDbOid',
|
||
|
|
descr => 'default template for new databases',
|
||
|
|
datname => 'template1', datdba => 'PGUID', encoding => 'ENCODING',
|
||
|
|
datcollate => '"LC_COLLATE"', datctype => '"LC_CTYPE"', datistemplate => 't',
|
||
|
|
datallowconn => 't', datconnlimit => '-1', datlastsysoid => '0',
|
||
|
|
datfrozenxid => '0', datminmxid => '1', dattablespace => '1663',
|
||
|
|
datacl => '_null_' },
|
||
|
|
|
||
|
|
]
|