aboutsummaryrefslogtreecommitdiff
path: root/src/backend/commands/explain.c
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-07-15 23:04:24 +0000
committerBruce Momjian <bruce@momjian.us>1999-07-15 23:04:24 +0000
commita9591ce66aa69e82196800b0f4f7b6e35aea8e49 (patch)
tree297fe17b4ac326fa1078134f10099c074e4052e0 /src/backend/commands/explain.c
parent2e6b1e63a3f4990594af94afe1b3cef90ae752b5 (diff)
downloadpostgresql-a9591ce66aa69e82196800b0f4f7b6e35aea8e49.tar.gz
postgresql-a9591ce66aa69e82196800b0f4f7b6e35aea8e49.zip
Change #include's to use <> and "" as appropriate.
Diffstat (limited to 'src/backend/commands/explain.c')
-rw-r--r--src/backend/commands/explain.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/backend/commands/explain.c b/src/backend/commands/explain.c
index 5db5334f118..c4ccf2db0de 100644
--- a/src/backend/commands/explain.c
+++ b/src/backend/commands/explain.c
@@ -4,21 +4,21 @@
*
* Copyright (c) 1994-5, Regents of the University of California
*
- * $Id: explain.c,v 1.39 1999/07/15 22:39:01 momjian Exp $
+ * $Id: explain.c,v 1.40 1999/07/15 23:03:08 momjian Exp $
*
*/
#include <stdio.h>
#include <string.h>
-#include <postgres.h>
+#include "postgres.h"
-#include <nodes/print.h>
-#include <lib/stringinfo.h>
-#include <commands/explain.h>
-#include <parser/parsetree.h>
-#include <optimizer/planner.h>
-#include <utils/relcache.h>
-#include <rewrite/rewriteHandler.h>
+#include "nodes/print.h"
+#include "lib/stringinfo.h"
+#include "commands/explain.h"
+#include "parser/parsetree.h"
+#include "optimizer/planner.h"
+#include "utils/relcache.h"
+#include "rewrite/rewriteHandler.h"
typedef struct ExplainState
{