*
* 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);
*
* 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,
*
* 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
#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
*
* 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;
*
* 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
*
* 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
*
* 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);
#ifndef PROCLANG_H
#define PROCLANG_H
-#include <nodes/parsenodes.h>
+#include "nodes/parsenodes.h"
extern void CreateProceduralLanguage(CreatePLangStmt *stmt);
extern void DropProceduralLanguage(DropPLangStmt *stmt);
#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);