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/include/commands/command.h | |
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/include/commands/command.h')
-rw-r--r-- | src/include/commands/command.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/include/commands/command.h b/src/include/commands/command.h index 36757b1f702..1601898b405 100644 --- a/src/include/commands/command.h +++ b/src/include/commands/command.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: command.h,v 1.34 2002/03/21 16:01:41 tgl Exp $ + * $Id: command.h,v 1.35 2002/03/26 19:16:40 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -62,10 +62,9 @@ extern void AlterTableDropConstraint(const char *relationName, bool inh, const char *constrName, int behavior); -extern void AlterTableCreateToastTable(const char *relationName, - bool silent); +extern void AlterTableCreateToastTable(Oid relOid, bool silent); -extern void AlterTableOwner(const char *relationName, const char *newOwnerName); +extern void AlterTableOwner(const RangeVar *tgtrel, const char *newOwnerName); /* * LOCK |