mirror of
https://github.com/postgres/postgres.git
synced 2025-11-12 05:01:15 +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;
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.25 1999/02/22 01:57:50 momjian Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/nodes/print.c,v 1.26 1999/03/23 16:50:54 momjian Exp $
|
||||
*
|
||||
* HISTORY
|
||||
* AUTHOR DATE MAJOR EVENT
|
||||
@@ -339,9 +339,6 @@ plannode_type(Plan *p)
|
||||
case T_Hash:
|
||||
return "HASH";
|
||||
break;
|
||||
case T_Tee:
|
||||
return "TEE";
|
||||
break;
|
||||
case T_Choose:
|
||||
return "CHOOSE";
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user