diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 1999-02-27 21:40:39 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 1999-02-27 21:40:39 +0000 |
commit | 1e006ba2ad2cca627292ec0066e5ae2369318863 (patch) | |
tree | a699ec3a34139359f028cca68c08c2300321a78a | |
parent | b775655e8a1b18ec0e1f596aee587ac2058fa4f3 (diff) | |
download | postgresql-1e006ba2ad2cca627292ec0066e5ae2369318863.tar.gz postgresql-1e006ba2ad2cca627292ec0066e5ae2369318863.zip |
Put back T_RecipeStmt, since the system doesn't actually build
without it. Sloppy, sloppy.
-rw-r--r-- | src/include/nodes/nodes.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index 7375745976b..c3ba1decd14 100644 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: nodes.h,v 1.45 1999/02/24 17:29:06 momjian Exp $ + * $Id: nodes.h,v 1.46 1999/02/27 21:40:39 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -163,6 +163,7 @@ typedef enum NodeTag T_FetchStmt, T_IndexStmt, T_ProcedureStmt, + T_RecipeStmt, T_RemoveAggrStmt, T_RemoveFuncStmt, T_RemoveOperStmt, |