pgsql: Clean up in the wake of TupleDescGetSlot() removal / 10763358c3f

From: Andres Freund <andres(at)anarazel(dot)de>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Clean up in the wake of TupleDescGetSlot() removal / 10763358c3f
Date: 2018-09-27 18:42:30
Message-ID: E1g5bF8-0002R1-Hj@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Clean up in the wake of TupleDescGetSlot() removal / 10763358c3f.

The previous commit wasn't careful enough to remove all traces of
TupleDescGetSlot().

Besides fixing the oversight of not removing TupleDescGetSlot()'s
declaration, this also removes FuncCallContext->slot. That was
documented to be for use in combination with TupleDescGetSlot(), a
cursory search over extensions finds no users, and there doesn't seem
to be convincing reasons to keep it around. If we later in the v12
release cycle find users, we can re-consider this part of the commit.

Reported-By: Michael Paquier
Discussion: https://postgr.es/m/20180926000413.GC1659@paquier.xyz

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/27e082b0c6e564facfbf54b56090fdcc4bf44cca

Modified Files
--------------
doc/src/sgml/xfunc.sgml | 8 --------
src/backend/utils/fmgr/funcapi.c | 16 ----------------
src/include/funcapi.h | 11 -----------
3 files changed, 35 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2018-09-27 18:42:49 Re: pgsql: Remove absolete function TupleDescGetSlot().
Previous Message Tom Lane 2018-09-27 15:23:49 pgsql: Build src/port files as a library with -fPIC, and use that in li