Another batch ...
authorMarc G. Fournier <scrappy@hub.org>
Fri, 30 Jul 1999 18:52:56 +0000 (18:52 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Fri, 30 Jul 1999 18:52:56 +0000 (18:52 +0000)
src/include/catalog/catalog.h
src/include/catalog/heap.h
src/include/catalog/pg_proc.h
src/include/commands/command.h
src/include/commands/dbcommands.h
src/include/commands/defrem.h
src/include/commands/explain.h
src/include/commands/proclang.h
src/include/commands/user.h

index b9ef67b7f0762bd485cb4569e94ce2fdd4537933..8372e90437f3957cc9b2a6bb717a21b252709ae9 100644 (file)
@@ -13,7 +13,7 @@
 #ifndef CATALOG_H
 #define CATALOG_H
 
-#include <access/tupdesc.h>
+#include "access/tupdesc.h"
 
 extern char *relpath(char *relname);
 extern bool IsSystemRelationName(char *relname);
index 30a5fa5b97e9f720e62a36123a3366b90bf59bbf..df892f55a4ff01f97a27b6e563be49488d04bc0c 100644 (file)
@@ -13,7 +13,7 @@
 #ifndef HEAP_H
 #define HEAP_H
 
-#include <utils/rel.h>
+#include "utils/rel.h"
 
 extern Oid     RelnameFindRelid(char *relname);
 extern Relation heap_create(char *relname, TupleDesc att,
index a1e3b00f13f14030a41a3b745aa598598041dd72..ffad1636e850de593a09731297191b67c92f8d24 100644 (file)
@@ -22,7 +22,7 @@
 #ifndef PG_PROC_H
 #define PG_PROC_H
 
-#include <tcop/dest.h>
+#include "tcop/dest.h"
 
 /* ----------------
  *             postgres.h contains the system type definintions and the
index ee7592b38a354ef789d48a54bcfdd5b70977aa4c..56ad4ed2afb79011e019bbfbeb6ace0ef8043f54 100644 (file)
@@ -13,7 +13,7 @@
 #ifndef COMMAND_H
 #define COMMAND_H
 
-#include <utils/portal.h>
+#include "utils/portal.h"
 
 extern MemoryContext PortalExecutorHeapMemory;
 
index 7ba8e16fb14832eb3e5341cbfc377a9bbc7b80d2..2743c302fb9247d0304e3af0a9da43268408e36c 100644 (file)
@@ -13,6 +13,9 @@
 #ifndef DBCOMMANDS_H
 #define DBCOMMANDS_H
 
+#include <signal.h>
+#include "tcop/dest.h"
+
 /*
  * Originally from tmp/daemon.h. The functions declared in daemon.h does not
  * exist; hence removed.               -- AY 7/29/94
index 2ae412c63d9a750ca023371d6fb469319d58a6a8..000e87656554e4a19b4a11018bdc99ea13f2395d 100644 (file)
@@ -13,8 +13,8 @@
 #ifndef DEFREM_H
 #define DEFREM_H
 
-#include <tcop/dest.h>
-#include <nodes/parsenodes.h>
+#include "nodes/parsenodes.h"
+#include "tcop/dest.h"
 
 /*
  * prototypes in defind.c
index 808cb17587615ade3e6e877f1788f383f96874f0..35dd5d63cfb831a3f754e0e3c0ce0689df18137c 100644 (file)
@@ -12,8 +12,8 @@
 #ifndef EXPLAIN_H
 #define EXPLAIN_H
 
-#include "tcop/dest.h"
 #include "nodes/parsenodes.h"
+#include "tcop/dest.h"
 
 extern void ExplainQuery(Query *query, bool verbose, CommandDest dest);
 
index f39a6498fb0cd0ec297171593258bb14eb1758c9..42276055e6c7d59ca6b5ceaa621a6c588cfa997f 100644 (file)
@@ -9,7 +9,7 @@
 #ifndef PROCLANG_H
 #define PROCLANG_H
 
-#include <nodes/parsenodes.h>
+#include "nodes/parsenodes.h"
 
 extern void CreateProceduralLanguage(CreatePLangStmt *stmt);
 extern void DropProceduralLanguage(DropPLangStmt *stmt);
index edf836e5bb7eea11d697c7a69544f1205917e24d..3830c110458a742b462acbc45cb6276fd799ba5d 100644 (file)
@@ -10,6 +10,9 @@
 #ifndef USER_H
 #define USER_H
 
+#include "nodes/parsenodes.h"
+#include "tcop/dest.h"
+
 extern void DefineUser(CreateUserStmt *stmt, CommandDest);
 extern void AlterUser(AlterUserStmt *stmt, CommandDest);
 extern void RemoveUser(char *user, CommandDest);