Remove dead assignment to local variable.

Heikki Linnakangas <heikki.linnakangas@iki.fi>

Commit: 96c0890d4bb1ac82cc0316000214f50767019b0f
Author: Heikki Linnakangas <heikki.linnakangas@iki.fi>
Date: 2021-07-12T08:14:13Z
Releases: 10.18
Remove dead assignment to local variable.

This should have been removed in commit 7e30c186da, which split the loop
into two. Only the first loop uses the 'from' variable; updating it in
the second loop is bogus. It was never read after the first loop, so this
was harmless and surely optimized away by the compiler, but let's be tidy.

Backpatch to all supported versions.

Author: Ranier Vilela
Discussion: https://www.postgresql.org/message-id/CAEudQAoWq%2BAL3BnELHu7gms2GN07k-np6yLbukGaxJ1vY-zeiQ%40mail.gmail.com

Files

PathChange+/−
src/backend/access/nbtree/nbtxlog.c modified +0 −1

Discussion