pgsql: postgres_fdw: make_tuple_from_result_row should set cur_attno fo

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: postgres_fdw: make_tuple_from_result_row should set cur_attno fo
Date: 2016-03-15 20:55:12
Message-ID: E1afvzk-0006zt-RR@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

postgres_fdw: make_tuple_from_result_row should set cur_attno for ctid.

There's no reason for this function to do this for every other
attribute number and omit it for CTID, especially since
conversion_error_callback has code to handle that case. This seems
to be an oversight in commit e690b9515072fd7767fdeca5c54166f6a77733bc.

Etsuro Fujita

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/4a46a99d8936328ab00e54bf8a2900832c4687e7

Modified Files
--------------
contrib/postgres_fdw/postgres_fdw.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Alvaro Herrera 2016-03-15 20:58:27 pgsql: Fix typos in comments
Previous Message Robert Haas 2016-03-15 20:44:12 Re: Re: [COMMITTERS] pgsql: Only try to push down foreign joins if the user mapping OIDs mat