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/backend/utils/cache/catcache.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/backend/utils/cache/catcache.c') diff --git a/src/backend/utils/cache/catcache.c b/src/backend/utils/cache/catcache.c index 6cb7b65fe3f..202f447076e 100644 --- a/src/backend/utils/cache/catcache.c +++ b/src/backend/utils/cache/catcache.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/utils/cache/catcache.c,v 1.92 2002/03/06 20:49:45 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/utils/cache/catcache.c,v 1.93 2002/03/26 19:16:08 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -656,11 +656,11 @@ do { \ CatCache * InitCatCache(int id, - char *relname, - char *indname, + const char *relname, + const char *indname, int reloidattr, int nkeys, - int *key) + const int *key) { CatCache *cp; MemoryContext oldcxt; -- cgit v1.2.3