mirror of
https://github.com/postgres/postgres.git
synced 2025-07-20 05:03:10 +03:00
Remove Existential, and ifdef out generate_fjoin. Neither did anything.
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.11 1997/12/04 23:20:32 thomas Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/outfuncs.c,v 1.12 1997/12/18 12:53:51 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Every (plan) node in POSTGRES has an associated "out" routine which
|
||||
@ -258,21 +258,6 @@ _outResult(StringInfo str, Result *node)
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* Existential is a subclass of Plan.
|
||||
*/
|
||||
static void
|
||||
_outExistential(StringInfo str, Existential *node)
|
||||
{
|
||||
char buf[500];
|
||||
|
||||
sprintf(buf, "EXISTENTIAL");
|
||||
appendStringInfo(str, buf);
|
||||
_outPlanInfo(str, (Plan *) node);
|
||||
|
||||
|
||||
}
|
||||
|
||||
/*
|
||||
* Append is a subclass of Plan.
|
||||
*/
|
||||
@ -1641,9 +1626,6 @@ _outNode(StringInfo str, void *obj)
|
||||
case T_Result:
|
||||
_outResult(str, obj);
|
||||
break;
|
||||
case T_Existential:
|
||||
_outExistential(str, obj);
|
||||
break;
|
||||
case T_Append:
|
||||
_outAppend(str, obj);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user