diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-11-26 01:14:33 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-11-26 01:14:33 +0000 |
commit | 598e86f3b30bfd343dfa5c3b9a310dbd91a96413 (patch) | |
tree | 7c94ee05e61fd2e9cb45280ca386a914b20b11cc /src/backend/parser/parse_func.c | |
parent | 4a5b781d71b61887fd312112d75979f250bf723f (diff) | |
download | postgresql-598e86f3b30bfd343dfa5c3b9a310dbd91a96413.tar.gz postgresql-598e86f3b30bfd343dfa5c3b9a310dbd91a96413.zip |
Cleanup up include files.
Diffstat (limited to 'src/backend/parser/parse_func.c')
-rw-r--r-- | src/backend/parser/parse_func.c | 29 |
1 files changed, 4 insertions, 25 deletions
diff --git a/src/backend/parser/parse_func.c b/src/backend/parser/parse_func.c index bb2a7773fdd..1583dc56f0c 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 <string.h> + #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 */ |