pgsql: Use a real RT index when setting up partition tuple routing.

From: Robert Haas <rhaas(at)postgresql(dot)org>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Use a real RT index when setting up partition tuple routing.
Date: 2017-07-18 01:52:28
Message-ID: E1dXHga-0004sh-0c@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Use a real RT index when setting up partition tuple routing.

Before, we always used a dummy value of 1, but that's not right when
the partitioned table being modified is inside of a WITH clause
rather than part of the main query.

Amit Langote, reported and reviewd by Etsuro Fujita, with a comment
change by me.

Discussion: http://postgr.es/m/ee12f648-8907-77b5-afc0-2980bcb0aa37@lab.ntt.co.jp

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/f81a91db4d1c2032632aa5df9fc14be24f5fe5ec

Modified Files
--------------
src/backend/commands/copy.c | 1 +
src/backend/executor/execMain.c | 3 ++-
src/backend/executor/nodeModifyTable.c | 1 +
src/include/executor/executor.h | 1 +
src/test/regress/expected/insert.out | 18 ++++++++++++++++++
src/test/regress/sql/insert.sql | 18 ++++++++++++++++++
6 files changed, 41 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Robert Haas 2017-07-18 02:03:20 pgsql: Reverse-convert row types in ExecWithCheckOptions.
Previous Message Tom Lane 2017-07-17 20:44:00 pgsql: Doc: explain dollar quoting in the intro part of the pl/pgsql ch