diff options
Diffstat (limited to 'src/include/commands')
| -rw-r--r-- | src/include/commands/comment.h | 5 | ||||
| -rw-r--r-- | src/include/commands/defrem.h | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/src/include/commands/comment.h b/src/include/commands/comment.h index f1e9a760b0b..bf2acfcfa0e 100644 --- a/src/include/commands/comment.h +++ b/src/include/commands/comment.h @@ -12,7 +12,7 @@ #ifndef COMMENT_H #define COMMENT_H -#include "nodes/pg_list.h" +#include "nodes/parsenodes.h" /*------------------------------------------------------------------ * Function Prototypes -- @@ -25,8 +25,7 @@ *------------------------------------------------------------------ */ -extern void CommentObject(int objtype, char * schemaname, char *objname, - char *objproperty, List *objlist, char *comment); +extern void CommentObject(CommentStmt *stmt); extern void DeleteComments(Oid oid, Oid classoid); diff --git a/src/include/commands/defrem.h b/src/include/commands/defrem.h index 69f180ec162..83b8fec6d77 100644 --- a/src/include/commands/defrem.h +++ b/src/include/commands/defrem.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: defrem.h,v 1.33 2002/03/29 19:06:22 tgl Exp $ + * $Id: defrem.h,v 1.34 2002/04/09 20:35:54 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -45,10 +45,10 @@ extern void DefineDomain(CreateDomainStmt *stmt); * prototypes in remove.c */ extern void RemoveDomain(List *names, int behavior); -extern void RemoveFunction(char *functionName, List *argTypes); +extern void RemoveFunction(List *functionName, List *argTypes); extern void RemoveOperator(char *operatorName, TypeName *typeName1, TypeName *typeName2); extern void RemoveType(List *names); -extern void RemoveAggregate(char *aggName, TypeName *aggType); +extern void RemoveAggregate(List *aggName, TypeName *aggType); #endif /* DEFREM_H */ |
