Thread: [COMMITTERS] pgsql: Fix reporting of constraint violations for table partitioning.

Fix reporting of constraint violations for table partitioning.

After a tuple is routed to a partition, it has been converted from the
root table's row type to the partition's row type.  ExecConstraints
needs to report the failure using the original tuple and the parent's
tuple descriptor rather than the ones for the selected partition.

Amit Langote

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/f1b4c771ea74f42447dccaed42ffcdcccf3aa694

Modified Files
--------------
src/backend/commands/copy.c            | 11 ++----
src/backend/commands/tablecmds.c       |  1 +
src/backend/executor/execMain.c        | 67 +++++++++++++++++++++++++++++-----
src/backend/executor/nodeModifyTable.c | 15 +++-----
src/include/executor/executor.h        |  4 +-
src/include/nodes/execnodes.h          |  1 +
src/test/regress/expected/insert.out   |  7 ++++
src/test/regress/sql/insert.sql        |  6 +++
8 files changed, 86 insertions(+), 26 deletions(-)