1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-21 16:02:15 +03:00

Remove Tee code, move to _deadcode.

This commit is contained in:
Bruce Momjian
1999-03-23 16:51:04 +00:00
parent 92781fc18a
commit 344dfc0b0f
13 changed files with 24 additions and 102 deletions

View File

@ -14,7 +14,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/executor/execTuples.c,v 1.23 1999/02/13 23:15:19 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/executor/execTuples.c,v 1.24 1999/03/23 16:50:48 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -800,14 +800,6 @@ NodeGetResultTupleSlot(Plan *node)
}
break;
case T_Tee:
{
TeeState *teestate = ((Tee *) node)->teestate;
slot = teestate->cstate.cs_ResultTupleSlot;
}
break;
default:
/* ----------------
* should never get here