diff options
| author | Bruce Momjian | 2002-03-19 02:18:25 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2002-03-19 02:18:25 +0000 |
| commit | d3788c330517af301576a14bdd71f26da3b0e1c0 (patch) | |
| tree | accb7af74b71d962496a250d1eb6cbec71bffd48 /src/include/commands | |
| parent | 525b19399c629455bdcd63c9879f7c75f7ae3d25 (diff) | |
Add DOMAIN support. Includes manual pages and regression tests, from
Rod Taylor.
Diffstat (limited to 'src/include/commands')
| -rw-r--r-- | src/include/commands/defrem.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/commands/defrem.h b/src/include/commands/defrem.h index b2dc3231d4f..78b34614d58 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.30 2002/03/07 16:35:38 momjian Exp $ + * $Id: defrem.h,v 1.31 2002/03/19 02:18:23 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -39,10 +39,12 @@ extern void CreateFunction(ProcedureStmt *stmt); extern void DefineOperator(char *name, List *parameters); extern void DefineAggregate(char *name, List *parameters); extern void DefineType(char *name, List *parameters); +extern void DefineDomain(CreateDomainStmt *stmt); /* * prototypes in remove.c */ +extern void RemoveDomain(char *domainName, int behavior); extern void RemoveFunction(char *functionName, List *argTypes); extern void RemoveOperator(char *operatorName, char *typeName1, char *typeName2); |
