diff options
author | Noah Misch | 2024-06-28 02:21:06 +0000 |
---|---|---|
committer | Noah Misch | 2024-06-28 02:21:06 +0000 |
commit | 4a7f91b3d3141e8898211a5b145b3c210b05c288 (patch) | |
tree | 51186d362a02d9e6155b12b67b8efb5a0b37f985 | |
parent | f9f47f0d93d1a493a3365625f96026c7b18d7cf5 (diff) |
Remove comment about xl_heap_inplace "AT END OF STRUCT".
Commit 2c03216d831160bedd72d45f712601b6f7d03f1c moved the tuple data
from there to the buffer-0 data. Back-patch to v12 (all supported
versions), the plan for the next change to this struct.
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | src/include/access/heapam_xlog.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/access/heapam_xlog.h b/src/include/access/heapam_xlog.h index 22a1747c4de..42736f37e79 100644 --- a/src/include/access/heapam_xlog.h +++ b/src/include/access/heapam_xlog.h @@ -425,7 +425,6 @@ typedef struct xl_heap_confirm typedef struct xl_heap_inplace { OffsetNumber offnum; /* updated tuple's offset on page */ - /* TUPLE DATA FOLLOWS AT END OF STRUCT */ } xl_heap_inplace; #define SizeOfHeapInplace (offsetof(xl_heap_inplace, offnum) + sizeof(OffsetNumber)) |