diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/catalog/heap.h | 6 | ||||
| -rw-r--r-- | src/include/commands/tablespace.h | 4 |
2 files changed, 4 insertions, 6 deletions
diff --git a/src/include/catalog/heap.h b/src/include/catalog/heap.h index 4ead9728df..06f0f4da3a 100644 --- a/src/include/catalog/heap.h +++ b/src/include/catalog/heap.h @@ -7,7 +7,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/heap.h,v 1.67 2004/06/18 06:14:05 tgl Exp $ + * $PostgreSQL: pgsql/src/include/catalog/heap.h,v 1.68 2004/07/11 19:52:51 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -40,11 +40,9 @@ extern Relation heap_create(const char *relname, Oid reltablespace, TupleDesc tupDesc, bool shared_relation, - bool storage_create, + bool create_storage, bool allow_system_table_mods); -extern void heap_storage_create(Relation rel); - extern Oid heap_create_with_catalog(const char *relname, Oid relnamespace, Oid reltablespace, diff --git a/src/include/commands/tablespace.h b/src/include/commands/tablespace.h index 17821493f4..42093c5150 100644 --- a/src/include/commands/tablespace.h +++ b/src/include/commands/tablespace.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2004, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/tablespace.h,v 1.2 2004/06/25 21:55:58 tgl Exp $ + * $PostgreSQL: pgsql/src/include/commands/tablespace.h,v 1.3 2004/07/11 19:52:52 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -20,7 +20,7 @@ extern void CreateTableSpace(CreateTableSpaceStmt *stmt); extern void DropTableSpace(DropTableSpaceStmt *stmt); -extern void TablespaceCreateDbspace(Oid spcNode, Oid dbNode); +extern void TablespaceCreateDbspace(Oid spcNode, Oid dbNode, bool isRedo); extern Oid get_tablespace_oid(const char *tablespacename); |
