From: Alvaro Herrera Date: Wed, 1 Aug 2018 21:04:57 +0000 (-0400) Subject: Fix unnoticed variable shadowing in previous commit X-Git-Tag: REL_12_BETA1~1779 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=91bc213d90c5a8f2b2e162d4ecf09b9301027ceb;p=postgresql Fix unnoticed variable shadowing in previous commit Per buildfarm. --- diff --git a/src/backend/executor/execPartition.c b/src/backend/executor/execPartition.c index d211e42abb..11b7e67e4d 100644 --- a/src/backend/executor/execPartition.c +++ b/src/backend/executor/execPartition.c @@ -215,7 +215,6 @@ ExecFindPartition(ResultRelInfo *resultRelInfo, PartitionDispatch *pd, dispatch = pd[0]; while (true) { - TupleTableSlot *myslot = dispatch->tupslot; TupleConversionMap *map = dispatch->tupmap; int cur_index = -1;