Generalize ri_RootToPartitionMap to use for non-partition children
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 2 Dec 2022 09:35:55 +0000 (10:35 +0100)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Fri, 2 Dec 2022 09:35:55 +0000 (10:35 +0100)
commitfb958b5da86da69651f6fb9f540c2cfb1346cdc5
treea059d6e4ceab797bc94f2212a5d748f5e1b3fa6d
parent40b1491357a4a092ea054176944cf76e2fe3eff8
Generalize ri_RootToPartitionMap to use for non-partition children

ri_RootToPartitionMap is currently only initialized for tuple routing
target partitions, though a future commit will need the ability to use
it even for the non-partition child tables, so make adjustments to the
decouple it from the partitioning code.

Also, make it lazily initialized via ExecGetRootToChildMap(), making
that function its preferred access path.  Existing third-party code
accessing it directly should no longer do so; consequently, it's been
renamed to ri_RootToChildMap, which also makes it consistent with
ri_ChildToRootMap.

ExecGetRootToChildMap() houses the logic of setting the map appropriately
depending on whether a given child relation is partition or not.

To support this, also add a separate entry point for TupleConversionMap
creation that receives an AttrMap.  No new code here, just split an
existing function in two.

Author: Amit Langote <amitlangote09@gmail.com>
Discussion: https://postgr.es/m/CA+HiwqEYUhDXSK5BTvG_xk=eaAEJCD4GS3C6uH7ybBvv+Z_Tmg@mail.gmail.com
src/backend/access/common/tupconvert.c
src/backend/commands/copyfrom.c
src/backend/executor/execMain.c
src/backend/executor/execPartition.c
src/backend/executor/execUtils.c
src/backend/executor/nodeModifyTable.c
src/backend/replication/logical/worker.c
src/include/access/tupconvert.h
src/include/executor/executor.h
src/include/nodes/execnodes.h