Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / include / commands / alter.h
blobab5d6f45cc766298d75c13f381cf2a0f867ea6ab
1 /*-------------------------------------------------------------------------
3 * alter.h
4 * prototypes for commands/alter.c
7 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
14 #ifndef ALTER_H
15 #define ALTER_H
17 #include "nodes/parsenodes.h"
19 extern void ExecRenameStmt(RenameStmt *stmt);
20 extern void ExecAlterObjectSchemaStmt(AlterObjectSchemaStmt *stmt);
21 extern void ExecAlterOwnerStmt(AlterOwnerStmt *stmt);
23 #endif /* ALTER_H */