Move partition_tuple_slot out of EState.
Robert Haas <rhaas@postgresql.org>
Move partition_tuple_slot out of EState. Commit 2ac3ef7a01df859c62d0a02333b646d65eaec5ff added a TupleTapleSlot for partition tuple slot to EState (es_partition_tuple_slot) but it's more logical to have it as part of ModifyTableState (mt_partition_tuple_slot) and CopyState (partition_tuple_slot). Discussion: http://postgr.es/m/1bd459d9-4c0c-197a-346e-e5e59e217d97@lab.ntt.co.jp Amit Langote, per a gripe from me
Files
| Path | Change | +/− |
|---|---|---|
| src/backend/commands/copy.c | modified | +13 −13 |
| src/backend/executor/execMain.c | modified | +12 −0 |
| src/backend/executor/nodeModifyTable.c | modified | +8 −9 |
| src/include/executor/executor.h | modified | +1 −0 |
| src/include/nodes/execnodes.h | modified | +1 −3 |