aboutsummaryrefslogtreecommitdiff
path: root/src/include/executor
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-03-23 16:51:04 +0000
committerBruce Momjian <bruce@momjian.us>1999-03-23 16:51:04 +0000
commit344dfc0b0f83fdeb1dbbb83e308d888abc9b2ad0 (patch)
tree9e2845ce5a0431bee8f3f652b30028677c2af66f /src/include/executor
parent92781fc18a024d4ea97dc08f27732b8108d1f5ee (diff)
downloadpostgresql-344dfc0b0f83fdeb1dbbb83e308d888abc9b2ad0.tar.gz
postgresql-344dfc0b0f83fdeb1dbbb83e308d888abc9b2ad0.zip
Remove Tee code, move to _deadcode.
Diffstat (limited to 'src/include/executor')
-rw-r--r--src/include/executor/nodeTee.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/include/executor/nodeTee.h b/src/include/executor/nodeTee.h
deleted file mode 100644
index 817228e4cdc..00000000000
--- a/src/include/executor/nodeTee.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/*-------------------------------------------------------------------------
- *
- * nodeTee.h
- * support functions for a Tee executor node
- *
- * Copyright (c) 1994, Regents of the University of California
- *
- * $Id: nodeTee.h,v 1.8 1999/02/13 23:21:29 momjian Exp $
- *
- *-------------------------------------------------------------------------
- */
-
-#ifndef NODETEE_H
-#define NODETEE_H
-
-#include "executor/tuptable.h"
-#include "nodes/execnodes.h"
-#include "nodes/plannodes.h"
-
-extern TupleTableSlot *ExecTee(Tee *node, Plan *parent);
-extern bool ExecInitTee(Tee *node, EState *estate, Plan *parent);
-extern void ExecEndTee(Tee *node, Plan *parent);
-extern int ExecCountSlotsTee(Tee *node);
-
-#endif /* NODETEE_H */