From 70b9bda65f8174e24eef5d8967705485a314a82e Mon Sep 17 00:00:00 2001 From: Andres Freund Date: Fri, 1 Mar 2019 17:24:57 -0800 Subject: 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 --- src/backend/executor/execPartition.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/backend/executor/execPartition.c') diff --git a/src/backend/executor/execPartition.c b/src/backend/executor/execPartition.c index e121c6c8ff5..e41801662b3 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 { -- cgit v1.2.3