diff options
Diffstat (limited to 'src/include/commands/defrem.h')
-rw-r--r-- | src/include/commands/defrem.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/commands/defrem.h b/src/include/commands/defrem.h index 707ba1d1b81..a4af74ac5c5 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.42 2002/07/18 23:11:32 petere Exp $ + * $Id: defrem.h,v 1.43 2002/07/29 22:14:11 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -59,6 +59,10 @@ extern void RemoveTypeById(Oid typeOid); extern void DefineDomain(CreateDomainStmt *stmt); extern void RemoveDomain(List *names, DropBehavior behavior); +extern void DefineOpClass(CreateOpClassStmt *stmt); +extern void RemoveOpClass(RemoveOpClassStmt *stmt); +extern void RemoveOpClassById(Oid opclassOid); + /* support routines in commands/define.c */ |