diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-06-25 21:55:59 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-06-25 21:55:59 +0000 |
| commit | 0adfa2c39d567394f423c69bfaf467d0d00ee3df (patch) | |
| tree | 215559f976b4e28454fcf7abaa8c96c748ec7fef /src/include/commands/alter.h | |
| parent | 1621192b11369a7f0c47aaff1c8ec16bad29ab69 (diff) | |
| download | postgresql-0adfa2c39d567394f423c69bfaf467d0d00ee3df.tar.gz | |
Support renaming of tablespaces, and changing the owners of
aggregates, conversions, functions, operators, operator classes,
schemas, types, and tablespaces. Fold the existing implementations
of alter domain owner and alter database owner in with these.
Christopher Kings-Lynne
Diffstat (limited to 'src/include/commands/alter.h')
| -rw-r--r-- | src/include/commands/alter.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/include/commands/alter.h b/src/include/commands/alter.h index 58717ae03f..2914fbbd8a 100644 --- a/src/include/commands/alter.h +++ b/src/include/commands/alter.h @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * * alter.h - * prototypes for alter.h + * prototypes for commands/alter.c * * * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/alter.h,v 1.3 2003/11/29 22:40:59 pgsql Exp $ + * $PostgreSQL: pgsql/src/include/commands/alter.h,v 1.4 2004/06/25 21:55:58 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -18,4 +18,6 @@ extern void ExecRenameStmt(RenameStmt *stmt); +extern void ExecAlterOwnerStmt(AlterOwnerStmt *stmt); + #endif /* ALTER_H */ |
