pgsql: Remove obsolete heap_formtuple/modifytuple/deformtuple functions

From: Heikki Linnakangas <heikki(dot)linnakangas(at)iki(dot)fi>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Remove obsolete heap_formtuple/modifytuple/deformtuple functions
Date: 2015-07-02 18:22:20
Message-ID: E1ZAj7s-0000K4-PC@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove obsolete heap_formtuple/modifytuple/deformtuple functions.

These variants used the old-style 'n'/' ' NULL indicators. The new-style
functions have been available since version 8.1. That should be long enough
that if there is still any old external code using these functions, they
can just switch to the new functions without worrying about backwards
compatibility

Peter Geoghegan

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/726117243022178e72966cbffdfb9147ec6dbbcc

Modified Files
--------------
src/backend/access/common/heaptuple.c | 111 ---------------------------------
src/include/access/htup_details.h | 11 ----
2 files changed, 122 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2015-07-02 20:41:16 pgsql: Add an optional missing_ok argument to SQL function current_sett
Previous Message Heikki Linnakangas 2015-07-02 18:11:48 pgsql: Remove "const" from convertTSFunction()'s return type.