pg_namespace.dat 918 B

1234567891011121314151617181920212223242526
  1. #----------------------------------------------------------------------
  2. #
  3. # pg_namespace.dat
  4. # Initial contents of the pg_namespace system catalog.
  5. #
  6. # Portions Copyright (c) 1996-2022, PostgreSQL Global Development Group
  7. # Portions Copyright (c) 1994, Regents of the University of California
  8. #
  9. # src/include/catalog/pg_namespace.dat
  10. #
  11. #----------------------------------------------------------------------
  12. [
  13. { oid => '11', oid_symbol => 'PG_CATALOG_NAMESPACE',
  14. descr => 'system catalog schema',
  15. nspname => 'pg_catalog', nspacl => '_null_' },
  16. { oid => '99', oid_symbol => 'PG_TOAST_NAMESPACE',
  17. descr => 'reserved schema for TOAST tables',
  18. nspname => 'pg_toast', nspacl => '_null_' },
  19. # update dumpNamespace() if changing this descr
  20. { oid => '2200', oid_symbol => 'PG_PUBLIC_NAMESPACE',
  21. descr => 'standard public schema',
  22. nspname => 'public', nspowner => 'pg_database_owner', nspacl => '_null_' },
  23. ]