diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-15 05:22:04 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-04-15 05:22:04 +0000 |
commit | 71dc300a375f4932693b064b161a400448c9bc2e (patch) | |
tree | ab20c095125a6eab33644befd187f936cf4fd093 /src/include/commands/tablecmds.h | |
parent | ab1ead6b9761531787c78e0c80daf98b421ac06f (diff) | |
download | postgresql-71dc300a375f4932693b064b161a400448c9bc2e.tar.gz postgresql-71dc300a375f4932693b064b161a400448c9bc2e.zip |
The contents of command.c, creatinh.c, define.c, remove.c and rename.c
have been divided according to the type of object manipulated - so ALTER
TABLE code is in tablecmds.c, aggregate commands in aggregatecmds.c and
so on.
A few common support routines remain in define.c (prototypes in
src/include/commands/defrem.h).
No code has been changed except for includes to reflect the new files.
The prototypes for aggregatecmds.c, functioncmds.c, operatorcmds.c,
and typecmds.c remain in src/include/commands/defrem.h.
From John Gray <jgray@azuli.co.uk>
Diffstat (limited to 'src/include/commands/tablecmds.h')
-rw-r--r-- | src/include/commands/tablecmds.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/src/include/commands/tablecmds.h b/src/include/commands/tablecmds.h new file mode 100644 index 00000000000..5d895972f5b --- /dev/null +++ b/src/include/commands/tablecmds.h @@ -0,0 +1,63 @@ +/*------------------------------------------------------------------------- + * + * tablecmds.h + * prototypes for tablecmds.c. + * + * + * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group + * Portions Copyright (c) 1994, Regents of the University of California + * + * $Id: tablecmds.h,v 1.1 2002/04/15 05:22:04 tgl Exp $ + * + *------------------------------------------------------------------------- + */ +#ifndef TABLECMDS_H +#define TABLECMDS_H + +#include "nodes/parsenodes.h" + +extern void AlterTableAddColumn(Oid myrelid, bool inherits, + ColumnDef *colDef); + +extern void AlterTableAlterColumnDefault(Oid myrelid, bool inh, + const char *colName, + Node *newDefault); + +extern void AlterTableAlterColumnDropNotNull(Oid myrelid, bool inh, + const char *colName); + +extern void AlterTableAlterColumnSetNotNull(Oid myrelid, bool inh, + const char *colName); + +extern void AlterTableAlterColumnFlags(Oid myrelid, bool inh, + const char *colName, + Node *flagValue, const char *flagType); + +extern void AlterTableDropColumn(Oid myrelid, bool inh, + const char *colName, int behavior); + +extern void AlterTableAddConstraint(Oid myrelid, bool inh, + List *newConstraints); + +extern void AlterTableDropConstraint(Oid myrelid, bool inh, + const char *constrName, int behavior); + +extern void AlterTableCreateToastTable(Oid relOid, bool silent); + +extern void AlterTableOwner(Oid relationOid, int32 newOwnerSysId); + +extern Oid DefineRelation(CreateStmt *stmt, char relkind); + +extern void RemoveRelation(const RangeVar *relation); + +extern void TruncateRelation(const RangeVar *relation); + +extern void renameatt(Oid relid, + const char *oldattname, + const char *newattname, + bool recurse); + +extern void renamerel(Oid relid, + const char *newrelname); + +#endif /* TABLECMDS_H */ |