summaryrefslogtreecommitdiff
path: root/src/include/catalog/pg_tablespace.h
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2004-06-21 04:06:07 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2004-06-21 04:06:07 +0000
commitf5f448fb3e6896584a240ca8e5c2fd616212fbf6 (patch)
tree6ac568df532f483d2f6777b7bd981f5c28f59c8d /src/include/catalog/pg_tablespace.h
parent483b7f8249f14133899057c7f6e6378b497c064e (diff)
downloadpostgresql-f5f448fb3e6896584a240ca8e5c2fd616212fbf6.tar.gz
Rename the built-in tablespaces to pg_default and pg_global, and prohibit
creation of user-defined tablespaces with names starting with 'pg_', as per suggestion of Chris K-L. Also install admin-guide tablespace documentation from Gavin.
Diffstat (limited to 'src/include/catalog/pg_tablespace.h')
-rw-r--r--src/include/catalog/pg_tablespace.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/catalog/pg_tablespace.h b/src/include/catalog/pg_tablespace.h
index f05d365770..1378d9987b 100644
--- a/src/include/catalog/pg_tablespace.h
+++ b/src/include/catalog/pg_tablespace.h
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
*
- * $PostgreSQL: pgsql/src/include/catalog/pg_tablespace.h,v 1.1 2004/06/18 06:14:06 tgl Exp $
+ * $PostgreSQL: pgsql/src/include/catalog/pg_tablespace.h,v 1.2 2004/06/21 04:06:07 tgl Exp $
*
* NOTES
* the genbki.sh script reads this file and generates .bki
@@ -57,8 +57,8 @@ typedef FormData_pg_tablespace *Form_pg_tablespace;
#define Anum_pg_tablespace_spclocation 3
#define Anum_pg_tablespace_spcacl 4
-DATA(insert OID = 1663 ( default PGUID "" _null_ ));
-DATA(insert OID = 1664 ( global PGUID "" _null_ ));
+DATA(insert OID = 1663 ( pg_default PGUID "" _null_ ));
+DATA(insert OID = 1664 ( pg_global PGUID "" _null_ ));
#define DEFAULTTABLESPACE_OID 1663
#define GLOBALTABLESPACE_OID 1664