diff options
Diffstat (limited to 'src/include/nodes/parsenodes.h')
| -rw-r--r-- | src/include/nodes/parsenodes.h | 23 |
1 files changed, 1 insertions, 22 deletions
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; |
