diff options
author | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 08:21:43 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1996-11-06 08:21:43 +0000 |
commit | 7385619f14eca67b7dccf950c4865f90cce035a0 (patch) | |
tree | 8894af43b73f9a12ad179b148d63c89559983edb /src/backend/commands/explain.c | |
parent | 33a8df7edd9088a9fb04b9fbba2bc0844158ebbc (diff) | |
download | postgresql-7385619f14eca67b7dccf950c4865f90cce035a0.tar.gz postgresql-7385619f14eca67b7dccf950c4865f90cce035a0.zip |
Clean it up so that it compiles
Diffstat (limited to 'src/backend/commands/explain.c')
-rw-r--r-- | src/backend/commands/explain.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c index d72b40033a6..3a5250c8409 100644 --- a/src/backend/commands/explain.c +++ b/src/backend/commands/explain.c @@ -7,23 +7,23 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/explain.c,v 1.3 1996/11/03 23:57:32 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/explain.c,v 1.4 1996/11/06 08:21:35 scrappy Exp $ * *------------------------------------------------------------------------- */ #include <stdio.h> #include <string.h> -#include "postgres.h" -#include "parser/catalog_utils.h" -#include "parser/parse_query.h" /* for MakeTimeRange() */ -#include "nodes/plannodes.h" -#include "tcop/tcopprot.h" -#include "utils/palloc.h" -#include "lib/stringinfo.h" -#include "commands/explain.h" -#include "optimizer/planner.h" -#include "access/xact.h" +#include <postgres.h> + +#include <parser/catalog_utils.h> +#include <parser/parse_query.h> /* for MakeTimeRange() */ +#include <nodes/plannodes.h> +#include <tcop/tcopprot.h> +#include <lib/stringinfo.h> +#include <commands/explain.h> +#include <optimizer/planner.h> +#include <access/xact.h> typedef struct ExplainState { /* options */ |