Commit 3d0dcc5c authored by Peter Geoghegan's avatar Peter Geoghegan

Fix spurious compiler warning in nbtxlog.c.

Cleanup from commit dd299df8.

Per complaint from Tom Lane.
parent 7d3bf73a
......@@ -266,10 +266,10 @@ btree_xlog_split(bool onleft, XLogReaderState *record)
Page lpage = (Page) BufferGetPage(lbuf);
BTPageOpaque lopaque = (BTPageOpaque) PageGetSpecialPointer(lpage);
OffsetNumber off;
IndexTuple newitem,
left_hikey;
Size newitemsz,
left_hikeysz;
IndexTuple newitem = NULL,
left_hikey = NULL;
Size newitemsz = 0,
left_hikeysz = 0;
Page newlpage;
OffsetNumber leftoff;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment