From: Andres Freund Date: Sat, 2 Mar 2019 01:24:57 +0000 (-0800) Subject: Use a virtual rather than a heap slot in two places where that suffices. X-Git-Tag: REL_12_BETA1~635 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=70b9bda65f8174e24eef5d8967705485a314a82e;p=postgresql Use a virtual rather than a heap slot in two places where that suffices. Author: Andres Freund Discussion: https://postgr.es/m/20180703070645.wchpu5muyto5n647@alap3.anarazel.de --- diff --git a/src/backend/executor/execPartition.c b/src/backend/executor/execPartition.c index e121c6c8ff..e41801662b 100644 --- a/src/backend/executor/execPartition.c +++ b/src/backend/executor/execPartition.c @@ -1009,7 +1009,7 @@ ExecInitPartitionDispatchInfo(PartitionTupleRouting *proute, Oid partoid, tupdesc, gettext_noop("could not convert row type")); pd->tupslot = pd->tupmap ? - MakeSingleTupleTableSlot(tupdesc, &TTSOpsHeapTuple) : NULL; + MakeSingleTupleTableSlot(tupdesc, &TTSOpsVirtual) : NULL; } else { diff --git a/src/backend/replication/logical/worker.c b/src/backend/replication/logical/worker.c index 27934cb4a9..a5e5007e81 100644 --- a/src/backend/replication/logical/worker.c +++ b/src/backend/replication/logical/worker.c @@ -591,7 +591,7 @@ apply_handle_insert(StringInfo s) estate = create_estate_for_relation(rel); remoteslot = ExecInitExtraTupleSlot(estate, RelationGetDescr(rel->localrel), - &TTSOpsHeapTuple); + &TTSOpsVirtual); /* Input functions may need an active snapshot, so get one */ PushActiveSnapshot(GetTransactionSnapshot());