mirror of
https://github.com/postgres/postgres.git
synced 2025-07-09 22:41:56 +03:00
Remove Tee code, move to _deadcode.
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: outfuncs.c,v 1.77 1999/03/01 00:10:31 tgl Exp $
|
||||
* $Id: outfuncs.c,v 1.78 1999/03/23 16:50:53 momjian Exp $
|
||||
*
|
||||
* NOTES
|
||||
* Every (plan) node in POSTGRES has an associated "out" routine which
|
||||
@ -544,20 +544,6 @@ _outHash(StringInfo str, Hash *node)
|
||||
node->hashtablesize);
|
||||
}
|
||||
|
||||
static void
|
||||
_outTee(StringInfo str, Tee *node)
|
||||
{
|
||||
appendStringInfo(str, " TEE ");
|
||||
_outPlanInfo(str, (Plan *) node);
|
||||
|
||||
appendStringInfo(str, " :leftParent %X :rightParent %X ",
|
||||
(int) node->leftParent,
|
||||
(int) node->rightParent);
|
||||
|
||||
appendStringInfo(str, " :rtentries ");
|
||||
_outNode(str, node->rtentries);
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
*
|
||||
* Stuff from primnodes.h.
|
||||
@ -1528,9 +1514,6 @@ _outNode(StringInfo str, void *obj)
|
||||
case T_SubPlan:
|
||||
_outSubPlan(str, obj);
|
||||
break;
|
||||
case T_Tee:
|
||||
_outTee(str, obj);
|
||||
break;
|
||||
case T_Resdom:
|
||||
_outResdom(str, obj);
|
||||
break;
|
||||
|
Reference in New Issue
Block a user