diff options
author | Bruce Momjian <bruce@momjian.us> | 2006-07-14 14:52:27 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2006-07-14 14:52:27 +0000 |
commit | e0522505bd13bc5aae993fc50b8f420665d78e96 (patch) | |
tree | 34f98af9ba78bc3dda16f5ce46d7e2158f304918 /src/backend/executor/functions.c | |
parent | ae643747b16a6ffed88323338dcd3b7ed918e3d0 (diff) | |
download | postgresql-e0522505bd13bc5aae993fc50b8f420665d78e96.tar.gz postgresql-e0522505bd13bc5aae993fc50b8f420665d78e96.zip |
Remove 576 references of include files that were not needed.
Diffstat (limited to 'src/backend/executor/functions.c')
-rw-r--r-- | src/backend/executor/functions.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/backend/executor/functions.c b/src/backend/executor/functions.c index e5f44c29c76..0da2abba77c 100644 --- a/src/backend/executor/functions.c +++ b/src/backend/executor/functions.c @@ -8,23 +8,20 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/executor/functions.c,v 1.103 2006/07/13 16:49:15 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/executor/functions.c,v 1.104 2006/07/14 14:52:19 momjian Exp $ * *------------------------------------------------------------------------- */ #include "postgres.h" -#include "access/heapam.h" #include "access/xact.h" #include "catalog/pg_proc.h" #include "catalog/pg_type.h" #include "commands/trigger.h" -#include "executor/executor.h" #include "executor/functions.h" #include "funcapi.h" #include "parser/parse_coerce.h" #include "parser/parse_expr.h" -#include "parser/parse_type.h" #include "tcop/tcopprot.h" #include "tcop/utility.h" #include "utils/builtins.h" |