diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-07-16 05:00:38 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-07-16 05:00:38 +0000 |
commit | a71802e12ec04fed791ea47f24ea30e0f5d9f5c2 (patch) | |
tree | 80d29372e0bbdd85bc4938ec048fa565c98eac12 /src/backend/commands/command.c | |
parent | 9b645d481ccfa3638de915e0f75e3dfe9d520b79 (diff) | |
download | postgresql-a71802e12ec04fed791ea47f24ea30e0f5d9f5c2.tar.gz postgresql-a71802e12ec04fed791ea47f24ea30e0f5d9f5c2.zip |
Final cleanup.
Diffstat (limited to 'src/backend/commands/command.c')
-rw-r--r-- | src/backend/commands/command.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/commands/command.c b/src/backend/commands/command.c index c39db896e65..ef6f25efd44 100644 --- a/src/backend/commands/command.c +++ b/src/backend/commands/command.c @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.50 1999/07/15 23:03:07 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.51 1999/07/16 04:58:38 momjian Exp $ * * NOTES * The PortalExecutorHeapMemory crap needs to be eliminated @@ -20,23 +20,23 @@ * *------------------------------------------------------------------------- */ +#include <string.h> #include "postgres.h" #include "access/heapam.h" -#include "catalog/indexing.h" #include "catalog/catalog.h" #include "catalog/catname.h" +#include "catalog/indexing.h" #include "catalog/pg_type.h" #include "commands/command.h" #include "executor/execdefs.h" #include "executor/executor.h" +#include "miscadmin.h" #include "optimizer/prep.h" #include "utils/acl.h" #include "utils/builtins.h" -#include "utils/temprel.h" #include "utils/syscache.h" -#include "miscadmin.h" -#include <string.h> +#include "utils/temprel.h" /* ---------------- * PortalExecutorHeapMemory stuff |