Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Remove comment about xl_heap_inplace "AT END OF STRUCT".
authorNoah Misch <noah@leadboat.com>
Fri, 28 Jun 2024 02:21:06 +0000 (19:21 -0700)
committerNoah Misch <noah@leadboat.com>
Fri, 28 Jun 2024 02:21:11 +0000 (19:21 -0700)
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

index 2d8a7f62706493974ca920ded4b9eaccb7860649..208d9aa39012107a480eb92754a35e4a5d0e4d44 100644 (file)
@@ -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))