diff options
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 */ |