mirror of
https://github.com/postgres/postgres.git
synced 2025-06-25 01:02:05 +03:00
Clear up btree_xlog_split() alignment comment.
Adjust a comment that describes how alignment of the new left page high
key works in btree_xlog_split(), the nbtree page split REDO routine.
The wording used before commit 2c03216d83
is much clearer, so go back
to that.
This commit is contained in:
@ -281,7 +281,11 @@ btree_xlog_split(bool onleft, XLogReaderState *record)
|
||||
datalen -= newitemsz;
|
||||
}
|
||||
|
||||
/* Extract left hikey and its size (assuming 16-bit alignment) */
|
||||
/*
|
||||
* Extract left hikey and its size. We assume that 16-bit alignment
|
||||
* is enough to apply IndexTupleSize (since it's fetching from a
|
||||
* uint16 field).
|
||||
*/
|
||||
left_hikey = (IndexTuple) datapos;
|
||||
left_hikeysz = MAXALIGN(IndexTupleSize(left_hikey));
|
||||
datapos += left_hikeysz;
|
||||
|
Reference in New Issue
Block a user