From 2e852e541c84af85aa918762fc838fa44a399310 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 21 Feb 2011 21:41:08 -0500 Subject: Remove ExecRemoveJunk(), which is no longer used anywhere. This was a leftover from the pre-8.1 design of junkfilters. It doesn't seem to have any reason to live, since it's merely a combination of two easy function calls, and not a well-designed combination at that (it encourages callers to leak the result tuple). --- src/include/executor/executor.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/include') diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index 482e8d382df..018b14ac843 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -148,7 +148,6 @@ extern Datum ExecGetJunkAttribute(TupleTableSlot *slot, AttrNumber attno, bool *isNull); extern TupleTableSlot *ExecFilterJunk(JunkFilter *junkfilter, TupleTableSlot *slot); -extern HeapTuple ExecRemoveJunk(JunkFilter *junkfilter, TupleTableSlot *slot); /* -- cgit v1.2.3