diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2005-05-06 17:24:55 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2005-05-06 17:24:55 +0000 |
commit | 278bd0cc224615e41219e24304d04898941ab046 (patch) | |
tree | ebf6ccc2a40ded4eff6d9cc38e76a458326732dc /src/backend/commands/copy.c | |
parent | 4eec2f24078d09fba8044a2b16584a9a4aa36242 (diff) | |
download | postgresql-278bd0cc224615e41219e24304d04898941ab046.tar.gz |
For some reason access/tupmacs.h has been #including utils/memutils.h,
which is neither needed by nor related to that header. Remove the bogus
inclusion and instead include the header in those C files that actually
need it. Also fix unnecessary inclusions and bad inclusion order in
tsearch2 files.
Diffstat (limited to 'src/backend/commands/copy.c')
-rw-r--r-- | src/backend/commands/copy.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/backend/commands/copy.c b/src/backend/commands/copy.c index 13c8ba9daa..a40d6fc922 100644 --- a/src/backend/commands/copy.c +++ b/src/backend/commands/copy.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.242 2005/05/06 02:56:42 momjian Exp $ + * $PostgreSQL: pgsql/src/backend/commands/copy.c,v 1.243 2005/05/06 17:24:53 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -43,8 +43,9 @@ #include "tcop/tcopprot.h" #include "utils/acl.h" #include "utils/builtins.h" -#include "utils/relcache.h" #include "utils/lsyscache.h" +#include "utils/memutils.h" +#include "utils/relcache.h" #include "utils/syscache.h" |