mirror of
https://github.com/postgres/postgres.git
synced 2026-03-09 17:50:43 -04:00
This adds support for changing the schema of a conversion, operator, operator class, operator family, text search configuration, text search dictionary, text search parser, or text search template. Dimitri Fontaine, with assorted corrections and other kibitzing.
30 lines
931 B
C
30 lines
931 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* alter.h
|
|
* prototypes for commands/alter.c
|
|
*
|
|
*
|
|
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* src/include/commands/alter.h
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef ALTER_H
|
|
#define ALTER_H
|
|
|
|
#include "nodes/parsenodes.h"
|
|
#include "utils/acl.h"
|
|
#include "utils/relcache.h"
|
|
|
|
extern void ExecRenameStmt(RenameStmt *stmt);
|
|
extern void ExecAlterObjectSchemaStmt(AlterObjectSchemaStmt *stmt);
|
|
extern void AlterObjectNamespace(Relation rel, int cacheId,
|
|
Oid classId, Oid objid, Oid nspId,
|
|
int Anum_name, int Anum_namespace, int Anum_owner,
|
|
AclObjectKind acl_kind,
|
|
bool superuser_only);
|
|
extern void ExecAlterOwnerStmt(AlterOwnerStmt *stmt);
|
|
|
|
#endif /* ALTER_H */
|