diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-03-23 16:51:04 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-03-23 16:51:04 +0000 |
commit | 344dfc0b0f83fdeb1dbbb83e308d888abc9b2ad0 (patch) | |
tree | 9e2845ce5a0431bee8f3f652b30028677c2af66f /src/backend/executor/execProcnode.c | |
parent | 92781fc18a024d4ea97dc08f27732b8108d1f5ee (diff) | |
download | postgresql-344dfc0b0f83fdeb1dbbb83e308d888abc9b2ad0.tar.gz postgresql-344dfc0b0f83fdeb1dbbb83e308d888abc9b2ad0.zip |
Remove Tee code, move to _deadcode.
Diffstat (limited to 'src/backend/executor/execProcnode.c')
-rw-r--r-- | src/backend/executor/execProcnode.c | 20 |
1 files changed, 2 insertions, 18 deletions
diff --git a/src/backend/executor/execProcnode.c b/src/backend/executor/execProcnode.c index b41e3ed9d45..1b693cbcaf1 100644 --- a/src/backend/executor/execProcnode.c +++ b/src/backend/executor/execProcnode.c @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.13 1999/02/13 23:15:17 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.14 1999/03/23 16:50:48 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -90,7 +90,6 @@ #include "executor/nodeAgg.h" #include "executor/nodeHash.h" #include "executor/nodeHashjoin.h" -#include "executor/nodeTee.h" #include "executor/nodeSubplan.h" /* ------------------------------------------------------------------------ @@ -196,10 +195,6 @@ ExecInitNode(Plan *node, EState *estate, Plan *parent) result = ExecInitHashJoin((HashJoin *) node, estate, parent); break; - case T_Tee: - result = ExecInitTee((Tee *) node, estate, parent); - break; - default: elog(ERROR, "ExecInitNode: node %d unsupported", nodeTag(node)); result = FALSE; @@ -248,7 +243,7 @@ ExecProcNode(Plan *node, Plan *parent) switch (nodeTag(node)) { /* ---------------- - * control nodes + * control nodes * ---------------- */ case T_Result: @@ -315,10 +310,6 @@ ExecProcNode(Plan *node, Plan *parent) result = ExecHashJoin((HashJoin *) node); break; - case T_Tee: - result = ExecTee((Tee *) node, parent); - break; - default: elog(ERROR, "ExecProcNode: node %d unsupported", nodeTag(node)); result = NULL; @@ -390,9 +381,6 @@ ExecCountSlotsNode(Plan *node) case T_HashJoin: return ExecCountSlotsHashJoin((HashJoin *) node); - case T_Tee: - return ExecCountSlotsTee((Tee *) node); - default: elog(ERROR, "ExecCountSlotsNode: node not yet supported: %d", nodeTag(node)); @@ -509,10 +497,6 @@ ExecEndNode(Plan *node, Plan *parent) ExecEndHashJoin((HashJoin *) node); break; - case T_Tee: - ExecEndTee((Tee *) node, parent); - break; - default: elog(ERROR, "ExecEndNode: node %d unsupported", nodeTag(node)); break; |