diff options
author | Bruce Momjian <bruce@momjian.us> | 1997-11-21 19:12:41 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1997-11-21 19:12:41 +0000 |
commit | 195f78e43c34c5d744d693cd143219a22a569a1b (patch) | |
tree | 5ea30caa210bef1e9b16a7c7ec029328d85e56d1 /src/include | |
parent | 043cebce2b3df39b3939a55778b66f240159ec5d (diff) | |
download | postgresql-195f78e43c34c5d744d693cd143219a22a569a1b.tar.gz postgresql-195f78e43c34c5d744d693cd143219a22a569a1b.zip |
More archive cleanup.
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/nodes/parsenodes.h | 4 | ||||
-rw-r--r-- | src/include/parser/parsetree.h | 11 | ||||
-rw-r--r-- | src/include/utils/rel.h | 4 |
3 files changed, 3 insertions, 16 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index b2f70de1b4e..9775f99b127 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.32 1997/11/21 18:12:28 momjian Exp $ + * $Id: parsenodes.h,v 1.33 1997/11/21 19:12:25 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -62,8 +62,6 @@ typedef struct Query /* internal to planner */ List *base_relation_list_; /* base relation list */ List *join_relation_list_; /* list of relations generated by - * joins */ - bool query_is_archival_; /* archival query flag */ } Query; diff --git a/src/include/parser/parsetree.h b/src/include/parser/parsetree.h index a5662cd9d79..0d2f83bbb2a 100644 --- a/src/include/parser/parsetree.h +++ b/src/include/parser/parsetree.h @@ -7,7 +7,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsetree.h,v 1.3 1997/09/07 04:59:38 momjian Exp $ + * $Id: parsetree.h,v 1.4 1997/11/21 19:12:28 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -30,16 +30,7 @@ * ^^^^^^^^^^ * range table: * (rtentry ...) - * * rtentry: - * note: this might be wrong, I don't understand how - * rt_time / rt_archive_time work together. anyways it - * looks something like: - * - * (relname ? relid timestuff flags rulelocks) - * or (new/cur relname relid timestuff flags rulelocks) - * - * someone who knows more should correct this -cim 6/9/91 * ---------------- */ diff --git a/src/include/utils/rel.h b/src/include/utils/rel.h index 951e12d6f30..2de7b31671d 100644 --- a/src/include/utils/rel.h +++ b/src/include/utils/rel.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: rel.h,v 1.13 1997/10/28 15:11:43 vadim Exp $ + * $Id: rel.h,v 1.14 1997/11/21 19:12:32 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -77,8 +77,6 @@ typedef Relation *RelationPtr; #define InvalidRelation ((Relation)NULL) -typedef char ArchiveMode; - /* * RelationIsValid -- * True iff relation descriptor is valid. |