Re: Declarative partitioning - another take
Amit Langote <langote_amit_f8@lab.ntt.co.jp>
On 2016/08/22 13:51, Ashutosh Bapat wrote: > The parent-child relationship of multi-level partitioned tables is not > retained when creating the AppendRelInfo nodes. We create RelOptInfo nodes > for all the leaf and intermediate tables. The AppendRelInfo nodes created > for these RelOptInfos set the topmost table as the parent of all the leaf > and child tables. Since partitioning scheme/s at each level is/are > associated with the parent/s at that level, we loose information about the > immediate parents and thus it becomes difficult to identify which leaf node > falls where in the partition hierarchy. This stops us from doing any > lump-sum partition pruning where we can eliminate all the partitions under > a given parent-partition if that parent-partition gets pruned. It also > restricts partition-wise join technique from being applied to partial > partition hierarchy when the whole partitioning scheme of joining tables > does not match. Maintaining a RelOptInfo hierarchy should not create > corresponding Append (all kinds) plan hierarchy since > accumulate_append_subpath() flattens any such hierarchy while creating > paths. Can you please consider this point in your upcoming patch? I agree. So there seem to be two things here: a) when expanding a partitioned table inheritance set, do it recursively such that resulting AppendRelInfos preserve *immediate* parent-child relationship info. b) when accumulating append subpaths, do not flatten a subpath that is itself an append when ((AppendPath *) subpath)->path.parent is a RelOptInfo with non-NULL partitioning info. Is the latter somehow necessary for pairwise-join considerations? I think I can manage to squeeze in (a) in the next version patch and will also start working on (b), mainly the part about RelOptInfo getting some partitioning info. Thanks, Amit
Commits
-
Fix typo.
- 03bf59676ea0 10.0 landed
-
Document trigger-firing behavior for inheritance/partitioning.
- e17628145ac3 10.0 landed
-
Fire per-statement triggers on partitioned tables.
- e180c8aa8caf 10.0 landed
-
Set ecxt_scantuple correctly for tuple routing.
- 132488bfee68 10.0 landed
-
Fix interaction of partitioned tables with BulkInsertState.
- b1ecb9b3fcfb 10.0 landed
-
Avoid core dump for empty prepared statement in an aborted transaction.
- ba61a04bc7fe 10.0 cited
-
Fix some problems in check_new_partition_bound().
- 8a8afe2f54c2 10.0 landed
-
Remove unnecessary arguments from partitioning functions.
- 18fc5192a631 10.0 cited
-
Fix reporting of constraint violations for table partitioning.
- f1b4c771ea74 10.0 cited
-
Fix tuple routing in cases where tuple descriptors don't match.
- 2ac3ef7a01df 10.0 cited
-
Invalid parent's relcache after CREATE TABLE .. PARTITION OF.
- 7cd0fd655d68 10.0 landed
-
Doc: improve documentation about inheritance.
- 162477a63d3c 10.0 cited