]> granicus.if.org Git - postgresql/blob - src/include/commands/alter.h
75fea7f7c1dca683b84046d8eb63a12cb262edfa
[postgresql] / src / include / commands / alter.h
1 /*-------------------------------------------------------------------------
2  *
3  * alter.h
4  *        prototypes for commands/alter.c
5  *
6  *
7  * Portions Copyright (c) 1996-2006, PostgreSQL Global Development Group
8  * Portions Copyright (c) 1994, Regents of the University of California
9  *
10  * $PostgreSQL: pgsql/src/include/commands/alter.h,v 1.8 2006/03/05 15:58:55 momjian Exp $
11  *
12  *-------------------------------------------------------------------------
13  */
14 #ifndef ALTER_H
15 #define ALTER_H
16
17 #include "nodes/parsenodes.h"
18
19 extern void ExecRenameStmt(RenameStmt *stmt);
20 extern void ExecAlterObjectSchemaStmt(AlterObjectSchemaStmt *stmt);
21 extern void ExecAlterOwnerStmt(AlterOwnerStmt *stmt);
22
23 #endif   /* ALTER_H */