mirror of
https://github.com/postgres/postgres.git
synced 2026-02-20 00:10:16 -05:00
25 lines
900 B
Text
25 lines
900 B
Text
#----------------------------------------------------------------------
|
|
#
|
|
# pg_namespace.dat
|
|
# Initial contents of the pg_namespace system catalog.
|
|
#
|
|
# Portions Copyright (c) 1996-2019, PostgreSQL Global Development Group
|
|
# Portions Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# src/include/catalog/pg_namespace.dat
|
|
#
|
|
#----------------------------------------------------------------------
|
|
|
|
[
|
|
|
|
{ oid => '11', oid_symbol => 'PG_CATALOG_NAMESPACE',
|
|
descr => 'system catalog schema',
|
|
nspname => 'pg_catalog', nspowner => 'PGUID', nspacl => '_null_' },
|
|
{ oid => '99', oid_symbol => 'PG_TOAST_NAMESPACE',
|
|
descr => 'reserved schema for TOAST tables',
|
|
nspname => 'pg_toast', nspowner => 'PGUID', nspacl => '_null_' },
|
|
{ oid => '2200', oid_symbol => 'PG_PUBLIC_NAMESPACE',
|
|
descr => 'standard public schema',
|
|
nspname => 'public', nspowner => 'PGUID', nspacl => '_null_' },
|
|
|
|
]
|