diff options
Diffstat (limited to 'src/include/commands')
-rw-r--r-- | src/include/commands/defrem.h | 11 | ||||
-rw-r--r-- | src/include/commands/tablecmds.h | 10 | ||||
-rw-r--r-- | src/include/commands/view.h | 4 |
3 files changed, 13 insertions, 12 deletions
diff --git a/src/include/commands/defrem.h b/src/include/commands/defrem.h index 653e22686f5..551deae0956 100644 --- a/src/include/commands/defrem.h +++ b/src/include/commands/defrem.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: defrem.h,v 1.39 2002/06/20 20:29:49 momjian Exp $ + * $Id: defrem.h,v 1.40 2002/07/01 15:27:56 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -29,7 +29,7 @@ extern void DefineIndex(RangeVar *heapRelation, bool primary, Expr *predicate, List *rangetable); -extern void RemoveIndex(RangeVar *relation); +extern void RemoveIndex(RangeVar *relation, DropBehavior behavior); extern void ReindexIndex(RangeVar *indexRelation, bool force); extern void ReindexTable(RangeVar *relation, bool force); extern void ReindexDatabase(const char *databaseName, bool force, bool all); @@ -42,16 +42,15 @@ extern void CreateFunction(CreateFunctionStmt *stmt); extern void RemoveFunction(List *functionName, List *argTypes); extern void DefineOperator(List *names, List *parameters); -extern void RemoveOperator(List *operatorName, - TypeName *typeName1, TypeName *typeName2); +extern void RemoveOperator(RemoveOperStmt *stmt); extern void DefineAggregate(List *names, List *parameters); extern void RemoveAggregate(List *aggName, TypeName *aggType); extern void DefineType(List *names, List *parameters); -extern void RemoveType(List *names); +extern void RemoveType(List *names, DropBehavior behavior); extern void DefineDomain(CreateDomainStmt *stmt); -extern void RemoveDomain(List *names, int behavior); +extern void RemoveDomain(List *names, DropBehavior behavior); /* support routines in commands/define.c */ diff --git a/src/include/commands/tablecmds.h b/src/include/commands/tablecmds.h index 646ae45d240..d38ea537c6d 100644 --- a/src/include/commands/tablecmds.h +++ b/src/include/commands/tablecmds.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: tablecmds.h,v 1.4 2002/04/30 01:24:52 tgl Exp $ + * $Id: tablecmds.h,v 1.5 2002/07/01 15:27:56 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -34,13 +34,15 @@ extern void AlterTableAlterColumnFlags(Oid myrelid, bool inh, Node *flagValue, const char *flagType); extern void AlterTableDropColumn(Oid myrelid, bool inh, - const char *colName, int behavior); + const char *colName, + DropBehavior behavior); extern void AlterTableAddConstraint(Oid myrelid, bool inh, List *newConstraints); extern void AlterTableDropConstraint(Oid myrelid, bool inh, - const char *constrName, int behavior); + const char *constrName, + DropBehavior behavior); extern void AlterTableCreateToastTable(Oid relOid, bool silent); @@ -48,7 +50,7 @@ extern void AlterTableOwner(Oid relationOid, int32 newOwnerSysId); extern Oid DefineRelation(CreateStmt *stmt, char relkind); -extern void RemoveRelation(const RangeVar *relation); +extern void RemoveRelation(const RangeVar *relation, DropBehavior behavior); extern void TruncateRelation(const RangeVar *relation); diff --git a/src/include/commands/view.h b/src/include/commands/view.h index 4fd6bd9a1a5..3603f2a4fab 100644 --- a/src/include/commands/view.h +++ b/src/include/commands/view.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: view.h,v 1.15 2002/06/20 20:29:49 momjian Exp $ + * $Id: view.h,v 1.16 2002/07/01 15:27:56 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -17,6 +17,6 @@ #include "nodes/parsenodes.h" extern void DefineView(const RangeVar *view, Query *view_parse); -extern void RemoveView(const RangeVar *view); +extern void RemoveView(const RangeVar *view, DropBehavior behavior); #endif /* VIEW_H */ |