aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorNoah Misch <noah@leadboat.com>2024-06-27 19:21:06 -0700
committerNoah Misch <noah@leadboat.com>2024-06-27 19:21:12 -0700
commitc7f10df368063098be859a3ebbd6522bbea8d86a (patch)
tree55e3b8f8dcddbf085407aec1def22a67e296e614 /src
parentaf73e37fa181283a3199cda2233d89c7a669f772 (diff)
downloadpostgresql-c7f10df368063098be859a3ebbd6522bbea8d86a.tar.gz
postgresql-c7f10df368063098be859a3ebbd6522bbea8d86a.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
Diffstat (limited to 'src')
-rw-r--r--src/include/access/heapam_xlog.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/access/heapam_xlog.h b/src/include/access/heapam_xlog.h
index 27db48184e6..9c726d20eba 100644
--- a/src/include/access/heapam_xlog.h
+++ b/src/include/access/heapam_xlog.h
@@ -308,7 +308,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))