1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-09 22:41:56 +03:00

Remove Existential, and ifdef out generate_fjoin. Neither did anything.

This commit is contained in:
Bruce Momjian
1997-12-18 12:54:45 +00:00
parent 4469eb63a3
commit 6a45941f2f
13 changed files with 26 additions and 200 deletions

View File

@ -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
@ -217,24 +217,6 @@ _readResult()
return (local_node);
}
/* ----------------
* _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
*
@ -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();