Remove dead assignment to local variable.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 12 Jul 2021 08:13:33 +0000 (11:13 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Mon, 12 Jul 2021 08:13:33 +0000 (11:13 +0300)
commit4c64b51dc51f8ff7e3e51eebfe8d10469a577df1
tree1e0c3fefcc5da77d66620e5f0af58b30428a4be6
parent2c9b46c090e76c62f24563b9be2c34e6b92e9329
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
src/backend/access/nbtree/nbtxlog.c