summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1999-07-30 18:52:56 +0000
committerMarc G. Fournier <scrappy@hub.org>1999-07-30 18:52:56 +0000
commitd90a0d770c8a32cb5a999dda8c5a3c1ac1a8b9be (patch)
treec4c46b86a94dfd88b31b2b6df7135db6590c61e0 /src
parent7d30c90ecc8852a1b580b23594576e444a7c5d11 (diff)
Another batch ...
Diffstat (limited to 'src')
-rw-r--r--src/include/catalog/catalog.h4
-rw-r--r--src/include/catalog/heap.h4
-rw-r--r--src/include/catalog/pg_proc.h4
-rw-r--r--src/include/commands/command.h4
-rw-r--r--src/include/commands/dbcommands.h5
-rw-r--r--src/include/commands/defrem.h6
-rw-r--r--src/include/commands/explain.h4
-rw-r--r--src/include/commands/proclang.h2
-rw-r--r--src/include/commands/user.h3
9 files changed, 21 insertions, 15 deletions
diff --git a/src/include/catalog/catalog.h b/src/include/catalog/catalog.h
index 1ef299580f1..2a0e6642a29 100644
--- a/src/include/catalog/catalog.h
+++ b/src/include/catalog/catalog.h
@@ -6,14 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: catalog.h,v 1.7 1999/02/13 23:21:01 momjian Exp $
+ * $Id: catalog.h,v 1.7.2.1 1999/07/30 18:52:53 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef CATALOG_H
#define CATALOG_H
-#include <access/tupdesc.h>
+#include "access/tupdesc.h"
extern char *relpath(char *relname);
extern bool IsSystemRelationName(char *relname);
diff --git a/src/include/catalog/heap.h b/src/include/catalog/heap.h
index f10340a2a4f..eb89eb46f5e 100644
--- a/src/include/catalog/heap.h
+++ b/src/include/catalog/heap.h
@@ -6,14 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: heap.h,v 1.19 1999/05/25 16:13:39 momjian Exp $
+ * $Id: heap.h,v 1.19.2.1 1999/07/30 18:52:53 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#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,
diff --git a/src/include/catalog/pg_proc.h b/src/include/catalog/pg_proc.h
index 292f8fac389..035be04a79a 100644
--- a/src/include/catalog/pg_proc.h
+++ b/src/include/catalog/pg_proc.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: pg_proc.h,v 1.99 1999/05/25 16:13:47 momjian Exp $
+ * $Id: pg_proc.h,v 1.99.2.1 1999/07/30 18:52:53 scrappy Exp $
*
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
@@ -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
diff --git a/src/include/commands/command.h b/src/include/commands/command.h
index 207ee4da429..db846223f03 100644
--- a/src/include/commands/command.h
+++ b/src/include/commands/command.h
@@ -6,14 +6,14 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: command.h,v 1.14 1999/05/25 22:42:41 momjian Exp $
+ * $Id: command.h,v 1.14.2.1 1999/07/30 18:52:55 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#ifndef COMMAND_H
#define COMMAND_H
-#include <utils/portal.h>
+#include "utils/portal.h"
extern MemoryContext PortalExecutorHeapMemory;
diff --git a/src/include/commands/dbcommands.h b/src/include/commands/dbcommands.h
index 48cec93bd75..3e0ab5f64fe 100644
--- a/src/include/commands/dbcommands.h
+++ b/src/include/commands/dbcommands.h
@@ -6,13 +6,16 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: dbcommands.h,v 1.8 1999/03/16 03:24:18 momjian Exp $
+ * $Id: dbcommands.h,v 1.8.2.1 1999/07/30 18:52:55 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#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
diff --git a/src/include/commands/defrem.h b/src/include/commands/defrem.h
index 5932ab43a22..315b52dd356 100644
--- a/src/include/commands/defrem.h
+++ b/src/include/commands/defrem.h
@@ -6,15 +6,15 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: defrem.h,v 1.15 1999/02/13 23:21:18 momjian Exp $
+ * $Id: defrem.h,v 1.15.2.1 1999/07/30 18:52:56 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#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
diff --git a/src/include/commands/explain.h b/src/include/commands/explain.h
index 27a7a47d2c0..fa819486f25 100644
--- a/src/include/commands/explain.h
+++ b/src/include/commands/explain.h
@@ -5,15 +5,15 @@
*
* Copyright (c) 1994-5, Regents of the University of California
*
- * $Id: explain.h,v 1.8 1999/02/13 23:21:19 momjian Exp $
+ * $Id: explain.h,v 1.8.2.1 1999/07/30 18:52:56 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#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);
diff --git a/src/include/commands/proclang.h b/src/include/commands/proclang.h
index f39a6498fb0..42276055e6c 100644
--- a/src/include/commands/proclang.h
+++ b/src/include/commands/proclang.h
@@ -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);
diff --git a/src/include/commands/user.h b/src/include/commands/user.h
index edf836e5bb7..3830c110458 100644
--- a/src/include/commands/user.h
+++ b/src/include/commands/user.h
@@ -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);