|
11 | 11 | * |
12 | 12 | * |
13 | 13 | * IDENTIFICATION |
14 | | - * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.13 1999/02/13 23:15:17 momjian Exp $ |
| 14 | + * $Header: /cvsroot/pgsql/src/backend/executor/execProcnode.c,v 1.14 1999/03/23 16:50:48 momjian Exp $ |
15 | 15 | * |
16 | 16 | *------------------------------------------------------------------------- |
17 | 17 | */ |
|
90 | 90 | #include"executor/nodeAgg.h" |
91 | 91 | #include"executor/nodeHash.h" |
92 | 92 | #include"executor/nodeHashjoin.h" |
93 | | -#include"executor/nodeTee.h" |
94 | 93 | #include"executor/nodeSubplan.h" |
95 | 94 |
|
96 | 95 | /* ------------------------------------------------------------------------ |
@@ -196,10 +195,6 @@ ExecInitNode(Plan *node, EState *estate, Plan *parent) |
196 | 195 | result=ExecInitHashJoin((HashJoin*)node,estate,parent); |
197 | 196 | break; |
198 | 197 |
|
199 | | -caseT_Tee: |
200 | | -result=ExecInitTee((Tee*)node,estate,parent); |
201 | | -break; |
202 | | - |
203 | 198 | default: |
204 | 199 | elog(ERROR,"ExecInitNode: node %d unsupported",nodeTag(node)); |
205 | 200 | result= FALSE; |
@@ -248,7 +243,7 @@ ExecProcNode(Plan *node, Plan *parent) |
248 | 243 | switch (nodeTag(node)) |
249 | 244 | { |
250 | 245 | /* ---------------- |
251 | | - *control nodes |
| 246 | + *control nodes |
252 | 247 | * ---------------- |
253 | 248 | */ |
254 | 249 | caseT_Result: |
@@ -315,10 +310,6 @@ ExecProcNode(Plan *node, Plan *parent) |
315 | 310 | result=ExecHashJoin((HashJoin*)node); |
316 | 311 | break; |
317 | 312 |
|
318 | | -caseT_Tee: |
319 | | -result=ExecTee((Tee*)node,parent); |
320 | | -break; |
321 | | - |
322 | 313 | default: |
323 | 314 | elog(ERROR,"ExecProcNode: node %d unsupported",nodeTag(node)); |
324 | 315 | result=NULL; |
@@ -390,9 +381,6 @@ ExecCountSlotsNode(Plan *node) |
390 | 381 | caseT_HashJoin: |
391 | 382 | returnExecCountSlotsHashJoin((HashJoin*)node); |
392 | 383 |
|
393 | | -caseT_Tee: |
394 | | -returnExecCountSlotsTee((Tee*)node); |
395 | | - |
396 | 384 | default: |
397 | 385 | elog(ERROR,"ExecCountSlotsNode: node not yet supported: %d", |
398 | 386 | nodeTag(node)); |
@@ -509,10 +497,6 @@ ExecEndNode(Plan *node, Plan *parent) |
509 | 497 | ExecEndHashJoin((HashJoin*)node); |
510 | 498 | break; |
511 | 499 |
|
512 | | -caseT_Tee: |
513 | | -ExecEndTee((Tee*)node,parent); |
514 | | -break; |
515 | | - |
516 | 500 | default: |
517 | 501 | elog(ERROR,"ExecEndNode: node %d unsupported",nodeTag(node)); |
518 | 502 | break; |
|