diff options
| author | Robert Haas | 2017-01-04 18:05:29 +0000 |
|---|---|---|
| committer | Robert Haas | 2017-01-04 18:16:59 +0000 |
| commit | 345b2dcf070bd8fbccde643b1b2856027623e9e5 (patch) | |
| tree | 737eb093564471c2519b1a35790fe4568e931e80 /src/include/executor | |
| parent | 6667d9a6d77b9a6eac89638ac363b6d03da253c1 (diff) | |
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/[email protected]
Amit Langote, per a gripe from me
Diffstat (limited to 'src/include/executor')
| -rw-r--r-- | src/include/executor/executor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/executor/executor.h b/src/include/executor/executor.h index a3fa5f07671..4a7074edd70 100644 --- a/src/include/executor/executor.h +++ b/src/include/executor/executor.h @@ -217,6 +217,7 @@ extern void ExecSetupPartitionTupleRouting(Relation rel, PartitionDispatch **pd, ResultRelInfo **partitions, TupleConversionMap ***tup_conv_maps, + TupleTableSlot **partition_tuple_slot, int *num_parted, int *num_partitions); extern int ExecFindPartition(ResultRelInfo *resultRelInfo, PartitionDispatch *pd, |
