diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2018-08-01 17:04:57 -0400 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2018-08-01 17:04:57 -0400 |
commit | 91bc213d90c5a8f2b2e162d4ecf09b9301027ceb (patch) | |
tree | 22676c252623c897c17a3024c6ac278fbc02c13f /src/backend/executor/execPartition.c | |
parent | 1c9bb02d8ec1d5b1b319e4fed70439a403c245b1 (diff) | |
download | postgresql-91bc213d90c5a8f2b2e162d4ecf09b9301027ceb.tar.gz postgresql-91bc213d90c5a8f2b2e162d4ecf09b9301027ceb.zip |
Fix unnoticed variable shadowing in previous commit
Per buildfarm.
Diffstat (limited to 'src/backend/executor/execPartition.c')
-rw-r--r-- | src/backend/executor/execPartition.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/executor/execPartition.c b/src/backend/executor/execPartition.c index d211e42abb8..11b7e67e4d6 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; |