summaryrefslogtreecommitdiff
path: root/src/include/nodes
diff options
context:
space:
mode:
authorBruce Momjian1997-11-21 18:12:58 +0000
committerBruce Momjian1997-11-21 18:12:58 +0000
commit3fa2bb316c92b2c332d18072799d585ab795f131 (patch)
treeb0c0d668c408c98e498bcd4eaa0c7d3d488e9b11 /src/include/nodes
parent0889dcd6f7e5ce4999082192884b65203009f6c9 (diff)
Remove archive stuff.
Diffstat (limited to 'src/include/nodes')
-rw-r--r--src/include/nodes/nodes.h3
-rw-r--r--src/include/nodes/parsenodes.h23
2 files changed, 2 insertions, 24 deletions
diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h
index 152a1cdd28e..7239818bd95 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.16 1997/10/28 15:10:37 vadim Exp $
+ * $Id: nodes.h,v 1.17 1997/11/21 18:12:25 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -162,7 +162,6 @@ typedef enum NodeTag
T_FetchStmt,
T_IndexStmt,
T_ProcedureStmt,
- T_PurgeStmt,
T_RecipeStmt,
T_RemoveAggrStmt,
T_RemoveFuncStmt,
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h
index 30625da1daf..b2f70de1b4e 100644
--- a/src/include/nodes/parsenodes.h
+++ b/src/include/nodes/parsenodes.h
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
- * $Id: parsenodes.h,v 1.31 1997/11/20 23:23:44 momjian Exp $
+ * $Id: parsenodes.h,v 1.32 1997/11/21 18:12:28 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -129,11 +129,6 @@ typedef struct CopyStmt
* Create Table Statement
* ----------------------
*/
-typedef enum ArchType
-{
- ARCH_NONE, ARCH_LIGHT, ARCH_HEAVY /* archive mode */
-} ArchType;
-
typedef struct CreateStmt
{
NodeTag type;
@@ -141,9 +136,6 @@ typedef struct CreateStmt
List *tableElts; /* column definitions list of ColumnDef */
List *inhRelnames; /* relations to inherit from list of Value
* (string) */
- ArchType archiveType; /* archive mode (ARCH_NONE if none */
- int location; /* smgrid (-1 if none) */
- int archiveLoc; /* smgrid (-1 if none) */
List *constraints; /* list of constraints (ConstaintDef) */
} CreateStmt;
@@ -329,18 +321,6 @@ typedef struct ProcedureStmt
} ProcedureStmt;
/* ----------------------
- * Purge Statement
- * ----------------------
- */
-typedef struct PurgeStmt
-{
- NodeTag type;
- char *relname; /* relation to purge */
- char *beforeDate; /* purge before this date */
- char *afterDate; /* purge after this date */
-} PurgeStmt;
-
-/* ----------------------
* Drop Aggregate Statement
* ----------------------
*/
@@ -880,7 +860,6 @@ typedef struct RangeTblEntry
* from clause) */
Oid relid;
bool inh; /* inheritance? */
- bool archive; /* filled in by plan_archive */
bool inFromCl; /* comes from From Clause */
} RangeTblEntry;