diff options
Diffstat (limited to 'src/backend/commands/define.c')
-rw-r--r-- | src/backend/commands/define.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/backend/commands/define.c b/src/backend/commands/define.c index 74e32625b66..f0bf15e0275 100644 --- a/src/backend/commands/define.c +++ b/src/backend/commands/define.c @@ -9,7 +9,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/define.c,v 1.4 1996/11/02 02:01:48 bryanh Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/define.c,v 1.5 1996/11/03 23:57:30 scrappy Exp $ * * DESCRIPTION * The "DefineFoo" routines take the parse tree and pick out the @@ -38,25 +38,24 @@ #include <postgres.h> #include <access/heapam.h> -#include <utils/tqual.h> #include <catalog/catname.h> #include <catalog/pg_aggregate.h> #include <catalog/pg_operator.h> #include <catalog/pg_proc.h> #include <catalog/pg_type.h> #include <utils/syscache.h> -#include <nodes/pg_list.h> #include <nodes/parsenodes.h> #include <fmgr.h> /* for fmgr */ #include <utils/builtins.h> /* prototype for textin() */ -#include <utils/elog.h> #include <utils/palloc.h> #include <commands/defrem.h> #include <optimizer/xfunc.h> #include <tcop/dest.h> +#include "catalog/pg_user.h" + static char *defGetString(DefElem *def); static int defGetTypeLength(DefElem *def); |