diff options
author | Bruce Momjian <bruce@momjian.us> | 2000-09-12 05:09:57 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2000-09-12 05:09:57 +0000 |
commit | 7f171b599a50d471d4791c768b538978b4a2dc95 (patch) | |
tree | 14e781e762ae6d60898505b43a0a819dee94c36e /src/include/commands/command.h | |
parent | 65edb541865032b5750cfe58cb8f7affbe1fc298 (diff) |
This patch implements the following command:
ALTER TABLE <tablename> OWNER TO <username>
Only a superuser may execute the command.
--
Mark Hollomon
mhh@mindspring.com
Diffstat (limited to 'src/include/commands/command.h')
-rw-r--r-- | src/include/commands/command.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/commands/command.h b/src/include/commands/command.h index e83b30a0ef6..4f2cfba2f12 100644 --- a/src/include/commands/command.h +++ b/src/include/commands/command.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: command.h,v 1.22 2000/07/18 03:57:32 tgl Exp $ + * $Id: command.h,v 1.23 2000/09/12 05:09:47 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -61,6 +61,8 @@ extern void AlterTableDropConstraint(const char *relationName, extern void AlterTableCreateToastTable(const char *relationName, bool silent); +extern void AlterTableOwner(const char *relationName, const char *newOwnerName); + /* * LOCK */ |