diff options
Diffstat (limited to 'src/include/catalog/pg_namespace.h')
| -rw-r--r-- | src/include/catalog/pg_namespace.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/include/catalog/pg_namespace.h b/src/include/catalog/pg_namespace.h index 8a57cf7977..607b74132e 100644 --- a/src/include/catalog/pg_namespace.h +++ b/src/include/catalog/pg_namespace.h @@ -8,7 +8,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: pg_namespace.h,v 1.1 2002/03/22 21:34:44 tgl Exp $ + * $Id: pg_namespace.h,v 1.2 2002/03/30 01:02:42 tgl Exp $ * * NOTES * the genbki.sh script reads this file and generates .bki @@ -69,6 +69,12 @@ typedef FormData_pg_namespace *Form_pg_namespace; DATA(insert OID = 11 ( "pg_catalog" PGUID "{=r}" )); DESCR("System catalog namespace"); #define PG_CATALOG_NAMESPACE 11 +DATA(insert OID = 99 ( "pg_toast" PGUID "{=r}" )); +DESCR("Reserved namespace for TOAST tables"); +#define PG_TOAST_NAMESPACE 99 +DATA(insert OID = 2071 ( "pg_public" PGUID "{=rw}" )); +DESCR("Standard public namespace"); +#define PG_PUBLIC_NAMESPACE 2071 /* |
