diff options
Diffstat (limited to 'src/backend/nodes/outfuncs.c')
-rw-r--r-- | src/backend/nodes/outfuncs.c | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/src/backend/nodes/outfuncs.c b/src/backend/nodes/outfuncs.c index 11f79e47220..e4816e2e256 100644 --- a/src/backend/nodes/outfuncs.c +++ b/src/backend/nodes/outfuncs.c @@ -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; |