From 598e86f3b30bfd343dfa5c3b9a310dbd91a96413 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 26 Nov 1997 01:14:33 +0000 Subject: Cleanup up include files. --- src/backend/parser/parse_func.c | 29 ++++------------------------- 1 file changed, 4 insertions(+), 25 deletions(-) (limited to 'src/backend/parser/parse_func.c') diff --git a/src/backend/parser/parse_func.c b/src/backend/parser/parse_func.c index bb2a7773fd..1583dc56f0 100644 --- a/src/backend/parser/parse_func.c +++ b/src/backend/parser/parse_func.c @@ -7,14 +7,13 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.1 1997/11/25 22:05:41 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/parser/parse_func.c,v 1.2 1997/11/26 01:11:21 momjian Exp $ * *------------------------------------------------------------------------- */ #include + #include "postgres.h" -#include "fmgr.h" -#include "miscadmin.h" #include "access/genam.h" #include "access/heapam.h" #include "access/itup.h" @@ -25,7 +24,9 @@ #include "catalog/pg_inherits.h" #include "catalog/pg_proc.h" #include "catalog/pg_type.h" +#include "fmgr.h" #include "lib/dllist.h" +#include "miscadmin.h" #include "nodes/makefuncs.h" #include "nodes/relation.h" #include "parser/parse_agg.h" @@ -41,28 +42,6 @@ #include "utils/lsyscache.h" #include "utils/syscache.h" -#ifdef 0 -#include "utils/datum.h" - -#include "utils/elog.h" -#include "utils/palloc.h" - -#include "nodes/pg_list.h" -#include "nodes/parsenodes.h" - -#include "catalog/pg_operator.h" -#include "catalog/catname.h" - -#include "access/skey.h" -#include "access/tupdesc.h" -#include "access/htup.h" -#include "access/genam.h" -#include "access/itup.h" -#include "access/tupmacs.h" - -#include "storage/buf.h" -#endif - #define ISCOMPLEX(type) (typeidTypeRelid(type) ? true : false) #define MAXFARGS 8 /* max # args to a c or postquel function */ -- cgit v1.2.1