From 1dbf8aa7a8159875bb46f6ee6ab0116eee76869b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Tue, 26 Mar 2002 19:17:02 +0000 Subject: 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. --- src/include/bootstrap/bootstrap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/bootstrap/bootstrap.h') diff --git a/src/include/bootstrap/bootstrap.h b/src/include/bootstrap/bootstrap.h index b80641bd96e..a2e3a0df193 100644 --- a/src/include/bootstrap/bootstrap.h +++ b/src/include/bootstrap/bootstrap.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: bootstrap.h,v 1.27 2002/03/02 21:39:34 momjian Exp $ + * $Id: bootstrap.h,v 1.28 2002/03/26 19:16:20 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -36,7 +36,7 @@ extern Form_pg_attribute attrtypes[MAXATTR]; extern int numattr; extern int BootstrapMain(int ac, char *av[]); -extern void index_register(char *heap, char *ind, IndexInfo *indexInfo); +extern void index_register(Oid heap, Oid ind, IndexInfo *indexInfo); extern void err_out(void); extern void InsertOneTuple(Oid objectid); -- cgit v1.2.3