diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-26 19:17:02 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-03-26 19:17:02 +0000 |
commit | 1dbf8aa7a8159875bb46f6ee6ab0116eee76869b (patch) | |
tree | 9aa08b4247dc230b6d35aa9c34b488b36b716693 /src/backend/bootstrap/bootstrap.c | |
parent | da631e931f9da4bc5df4bfd39f0c42684adfb8e5 (diff) | |
download | postgresql-1dbf8aa7a8159875bb46f6ee6ab0116eee76869b.tar.gz postgresql-1dbf8aa7a8159875bb46f6ee6ab0116eee76869b.zip |
pg_class has a relnamespace column. You can create and access tables
in schemas other than the system namespace; however, there's no search
path yet, and not all operations work yet on tables outside the system
namespace.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 275b0579ffa..a4ab6fce614 100644 --- a/src/backend/bootstrap/bootstrap.c +++ b/src/backend/bootstrap/bootstrap.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.124 2002/03/15 19:20:34 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.125 2002/03/26 19:15:16 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -153,8 +153,8 @@ extern char *optarg; typedef struct _IndexList { - char *il_heap; - char *il_ind; + Oid il_heap; + Oid il_ind; IndexInfo *il_info; struct _IndexList *il_next; } IndexList; @@ -1080,8 +1080,8 @@ AddStr(char *str, int strlength, int mderef) * are present in the index. */ void -index_register(char *heap, - char *ind, +index_register(Oid heap, + Oid ind, IndexInfo *indexInfo) { IndexList *newind; @@ -1103,8 +1103,8 @@ index_register(char *heap, oldcxt = MemoryContextSwitchTo(nogc); newind = (IndexList *) palloc(sizeof(IndexList)); - newind->il_heap = pstrdup(heap); - newind->il_ind = pstrdup(ind); + newind->il_heap = heap; + newind->il_ind = ind; newind->il_info = (IndexInfo *) palloc(sizeof(IndexInfo)); memcpy(newind->il_info, indexInfo, sizeof(IndexInfo)); @@ -1126,8 +1126,8 @@ build_indices() Relation heap; Relation ind; - heap = heap_openr(ILHead->il_heap, NoLock); - ind = index_openr(ILHead->il_ind); + heap = heap_open(ILHead->il_heap, NoLock); + ind = index_open(ILHead->il_ind); index_build(heap, ind, ILHead->il_info); /* |