diff options
author | Noah Misch <noah@leadboat.com> | 2024-06-27 19:21:06 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2024-06-27 19:21:10 -0700 |
commit | e352ba7b750982417796955359af4e5c4f38d657 (patch) | |
tree | de02c251d8de02e123ea5e3d8967e65403637bb8 | |
parent | e4afd7153bd80404bffc4d17b37451d7317ae53e (diff) | |
download | postgresql-e352ba7b750982417796955359af4e5c4f38d657.tar.gz postgresql-e352ba7b750982417796955359af4e5c4f38d657.zip |
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/20240523000548.58.nmisch@google.com
-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 a038450787e..db65621cf34 100644 --- a/src/include/access/heapam_xlog.h +++ b/src/include/access/heapam_xlog.h @@ -310,7 +310,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)) |