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/commands/cluster.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/include/commands/cluster.h') diff --git a/src/include/commands/cluster.h b/src/include/commands/cluster.h index d0760070841..c04cca24b42 100644 --- a/src/include/commands/cluster.h +++ b/src/include/commands/cluster.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994-5, Regents of the University of California * - * $Id: cluster.h,v 1.12 2001/11/05 17:46:33 momjian Exp $ + * $Id: cluster.h,v 1.13 2002/03/26 19:16:40 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -23,6 +23,6 @@ /* * functions */ -extern void cluster(char *oldrelname, char *oldindexname); +extern void cluster(RangeVar *oldrelation, char *oldindexname); #endif /* CLUSTER_H */ -- cgit v1.2.3