We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30e82f1 commit dd1f645Copy full SHA for dd1f645
src/backend/access/nbtree/nbtinsert.c
@@ -1289,6 +1289,7 @@ _bt_insertonpg(Relation rel,
1289
xl_btree_metadata xlmeta;
1290
uint8 xlinfo;
1291
XLogRecPtr recptr;
1292
+ uint16 upostingoff;
1293
1294
xlrec.offnum = newitemoff;
1295
@@ -1354,7 +1355,7 @@ _bt_insertonpg(Relation rel,
1354
1355
* must reconstruct final itup (as well as nposting) using
1356
* _bt_swap_posting().
1357
*/
- uint16 upostingoff = postingoff;
1358
+ upostingoff = postingoff;
1359
1360
XLogRegisterBufData(0, (char *) &upostingoff, sizeof(uint16));
1361
XLogRegisterBufData(0, (char *) origitup,
0 commit comments