pgsql: Remove ExecRemoveJunk(), which is no longer used anywhere.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Remove ExecRemoveJunk(), which is no longer used anywhere.
Date: 2011-02-22 02:41:54
Message-ID: E1PriCI-0008CB-Ma@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

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).

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/2e852e541c84af85aa918762fc838fa44a399310

Modified Files
--------------
src/backend/executor/execJunk.c | 18 +++---------------
src/include/executor/executor.h | 1 -
2 files changed, 3 insertions(+), 16 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message User Itagaki 2011-02-22 12:03:29 textsearch-ja - textsearch_senna: Fix query generator for AND-ed %%
Previous Message Tom Lane 2011-02-22 02:20:22 pgsql: Fix dangling-pointer problem in before-row update trigger proces