Commit dc037969 authored by Marc G. Fournier's avatar Marc G. Fournier

Another one completely cleaned up

parent 0b3cb80e
...@@ -26,14 +26,14 @@ ...@@ -26,14 +26,14 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: dest.h,v 1.2 1996/11/03 12:13:19 scrappy Exp $ * $Id: dest.h,v 1.3 1996/11/04 12:07:00 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#ifndef DEST_H #ifndef DEST_H
#define DEST_H #define DEST_H
#include "access/tupdesc.h" #include <access/tupdesc.h>
/* ---------------- /* ----------------
* CommandDest is used to allow the results of calling * CommandDest is used to allow the results of calling
......
...@@ -6,15 +6,14 @@ ...@@ -6,15 +6,14 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: pquery.h,v 1.1 1996/08/28 07:27:51 scrappy Exp $ * $Id: pquery.h,v 1.2 1996/11/04 12:07:01 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#ifndef PQUERY_H #ifndef PQUERY_H
#define PQUERY_H #define PQUERY_H
#include "executor/execdesc.h" #include <executor/execdesc.h>
#include "tcop/dest.h"
/* moved to execdesc.h /* moved to execdesc.h
extern QueryDesc *CreateQueryDesc(Query *parsetree, Plan *plantree, extern QueryDesc *CreateQueryDesc(Query *parsetree, Plan *plantree,
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: tcopprot.h,v 1.1 1996/08/28 07:27:53 scrappy Exp $ * $Id: tcopprot.h,v 1.2 1996/11/04 12:07:04 scrappy Exp $
* *
* OLD COMMENTS * OLD COMMENTS
* This file was created so that other c files could get the two * This file was created so that other c files could get the two
...@@ -18,9 +18,8 @@ ...@@ -18,9 +18,8 @@
#ifndef TCOPPROT_H #ifndef TCOPPROT_H
#define TCOPPROT_H #define TCOPPROT_H
#include "tcop/dest.h" #include <executor/execdesc.h>
#include "nodes/pg_list.h" #include <parser/parse_query.h>
#include "parser/parse_query.h"
#ifndef BOOTSTRAP_INCLUDE #ifndef BOOTSTRAP_INCLUDE
extern List *pg_plan(char *query_string, Oid *typev, int nargs, extern List *pg_plan(char *query_string, Oid *typev, int nargs,
......
...@@ -6,13 +6,15 @@ ...@@ -6,13 +6,15 @@
* *
* Copyright (c) 1994, Regents of the University of California * Copyright (c) 1994, Regents of the University of California
* *
* $Id: utility.h,v 1.1 1996/08/28 07:27:54 scrappy Exp $ * $Id: utility.h,v 1.2 1996/11/04 12:07:05 scrappy Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#ifndef UTILITY_H #ifndef UTILITY_H
#define UTILITY_H #define UTILITY_H
#include <executor/execdesc.h>
extern void ProcessUtility(Node *parsetree, CommandDest dest); extern void ProcessUtility(Node *parsetree, CommandDest dest);
#endif /* UTILITY_H */ #endif /* UTILITY_H */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment