summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2021-07-12 11:13:33 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2021-07-12 11:13:59 +0300
commit233280803cb6b3fe6b905abc1a28913855f40dd6 (patch)
treeffc8a58688908390c63b6ae7fba07ca74e431402 /src
parent166fcf4a6364769501dd8562db927abefdd310b2 (diff)
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
Diffstat (limited to 'src')
-rw-r--r--src/backend/access/nbtree/nbtxlog.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/backend/access/nbtree/nbtxlog.c b/src/backend/access/nbtree/nbtxlog.c
index c2e920f159c..786c08c0cea 100644
--- a/src/backend/access/nbtree/nbtxlog.c
+++ b/src/backend/access/nbtree/nbtxlog.c
@@ -77,7 +77,6 @@ _bt_restore_page(Page page, char *from, int len)
if (PageAddItem(page, items[i], itemsizes[i], nitems - i,
false, false) == InvalidOffsetNumber)
elog(PANIC, "_bt_restore_page: cannot add item to page");
- from += itemsz;
}
}