aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes/readfuncs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/backend/nodes/readfuncs.c')
-rw-r--r--src/backend/nodes/readfuncs.c24
1 files changed, 1 insertions, 23 deletions
diff --git a/src/backend/nodes/readfuncs.c b/src/backend/nodes/readfuncs.c
index ab05372a917..2fd639aaf48 100644
--- a/src/backend/nodes/readfuncs.c
+++ b/src/backend/nodes/readfuncs.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.10 1997/10/25 01:09:30 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/nodes/readfuncs.c,v 1.11 1997/12/18 12:53:59 momjian Exp $
*
* NOTES
* Most of the read functions for plan nodes are tested. (In fact, they
@@ -218,24 +218,6 @@ _readResult()
}
/* ----------------
- * _readExistential
- *
- * Existential nodes are only used by the planner.
- * ----------------
- */
-static Existential *
-_readExistential()
-{
- Existential *local_node;
-
- local_node = makeNode(Existential);
-
- _getPlan((Plan *) local_node);
-
- return (local_node);
-}
-
-/* ----------------
* _readAppend
*
* Append is a subclass of Plan.
@@ -1884,10 +1866,6 @@ parsePlanString(void)
{
return_value = _readResult();
}
- else if (!strncmp(token, "EXISTENTIAL", 11))
- {
- return_value = _readExistential();
- }
else if (!strncmp(token, "APPEND", 6))
{
return_value = _readAppend();