From 77d0bc8001e64bc901b952ed86d016259c713bab Mon Sep 17 00:00:00 2001 From: Noah Misch Date: Thu, 27 Jun 2024 19:21:06 -0700 Subject: 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 --- src/include/access/heapam_xlog.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src') diff --git a/src/include/access/heapam_xlog.h b/src/include/access/heapam_xlog.h index 9e77f90a093..2cdcae53518 100644 --- a/src/include/access/heapam_xlog.h +++ b/src/include/access/heapam_xlog.h @@ -300,7 +300,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)) -- cgit v1.2.3