diff options
| author | Bruce Momjian | 1997-11-26 01:14:33 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1997-11-26 01:14:33 +0000 |
| commit | 598e86f3b30bfd343dfa5c3b9a310dbd91a96413 (patch) | |
| tree | 7c94ee05e61fd2e9cb45280ca386a914b20b11cc /src/include/commands | |
| parent | 4a5b781d71b61887fd312112d75979f250bf723f (diff) | |
Cleanup up include files.
Diffstat (limited to 'src/include/commands')
| -rw-r--r-- | src/include/commands/creatinh.h | 4 | ||||
| -rw-r--r-- | src/include/commands/explain.h | 5 | ||||
| -rw-r--r-- | src/include/commands/recipe.h | 4 | ||||
| -rw-r--r-- | src/include/commands/sequence.h | 2 | ||||
| -rw-r--r-- | src/include/commands/trigger.h | 1 | ||||
| -rw-r--r-- | src/include/commands/view.h | 4 |
6 files changed, 16 insertions, 4 deletions
diff --git a/src/include/commands/creatinh.h b/src/include/commands/creatinh.h index 5ba47f8a03a..21208ad958d 100644 --- a/src/include/commands/creatinh.h +++ b/src/include/commands/creatinh.h @@ -6,13 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: creatinh.h,v 1.5 1997/11/21 18:12:16 momjian Exp $ + * $Id: creatinh.h,v 1.6 1997/11/26 01:12:12 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef CREATINH_H #define CREATINH_H +#include "nodes/parsenodes.h" + extern void DefineRelation(CreateStmt *stmt); extern void RemoveRelation(char *name); diff --git a/src/include/commands/explain.h b/src/include/commands/explain.h index b2880868cd2..6b808582a0e 100644 --- a/src/include/commands/explain.h +++ b/src/include/commands/explain.h @@ -5,13 +5,16 @@ * * Copyright (c) 1994-5, Regents of the University of California * - * $Id: explain.h,v 1.5 1997/09/08 21:51:38 momjian Exp $ + * $Id: explain.h,v 1.6 1997/11/26 01:12:16 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef EXPLAIN_H #define EXPLAIN_H +#include "tcop/dest.h" +#include "nodes/parsenodes.h" + extern void ExplainQuery(Query *query, bool verbose, CommandDest dest); #endif /* EXPLAIN_H */ diff --git a/src/include/commands/recipe.h b/src/include/commands/recipe.h index 246cf4eaca8..c90d663295e 100644 --- a/src/include/commands/recipe.h +++ b/src/include/commands/recipe.h @@ -5,13 +5,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: recipe.h,v 1.4 1997/09/08 21:51:42 momjian Exp $ + * $Id: recipe.h,v 1.5 1997/11/26 01:12:24 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef RECIPE_H #define RECIPE_H +#include "nodes/parsenodes.h" + extern void beginRecipe(RecipeStmt *stmt); #endif /* RECIPE_H */ diff --git a/src/include/commands/sequence.h b/src/include/commands/sequence.h index 92dbd14a8e0..2ffa42639b4 100644 --- a/src/include/commands/sequence.h +++ b/src/include/commands/sequence.h @@ -9,6 +9,8 @@ #ifndef SEQUENCE_H #define SEQUENCE_H +#include "nodes/parsenodes.h" + /* * Columns of a sequnece relation */ diff --git a/src/include/commands/trigger.h b/src/include/commands/trigger.h index 6ba0394fdf7..28ae082d687 100644 --- a/src/include/commands/trigger.h +++ b/src/include/commands/trigger.h @@ -11,6 +11,7 @@ #include "access/tupdesc.h" #include "access/htup.h" +#include "nodes/parsenodes.h" #include "utils/rel.h" typedef uint32 TriggerEvent; diff --git a/src/include/commands/view.h b/src/include/commands/view.h index 2fc1bb3b8d3..da1276d9a73 100644 --- a/src/include/commands/view.h +++ b/src/include/commands/view.h @@ -6,13 +6,15 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: view.h,v 1.4 1997/09/08 21:51:47 momjian Exp $ + * $Id: view.h,v 1.5 1997/11/26 01:12:33 momjian Exp $ * *------------------------------------------------------------------------- */ #ifndef VIEW_H #define VIEW_H +#include "nodes/parsenodes.h" + extern char *MakeRetrieveViewRuleName(char *view_name); extern void DefineView(char *view_name, Query *view_parse); extern void RemoveView(char *view_name); |
