From 0b8c5f7c91bfa1eef3e53d6c33be710f96f71f6e Mon Sep 17 00:00:00 2001 From: Jussi Saurio Date: Thu, 10 Jul 2025 15:06:27 +0300 Subject: [PATCH] btree/balance: extra doc context for CellArray::cell_payloads --- core/storage/btree.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/core/storage/btree.rs b/core/storage/btree.rs index b3948084c..4b69cde6f 100644 --- a/core/storage/btree.rs +++ b/core/storage/btree.rs @@ -5481,6 +5481,7 @@ impl PageStack { /// Used for redistributing cells during a balance operation. struct CellArray { /// The actual cell data. + /// For all other page types except table leaves, this will also contain the associated divider cell from the parent page. cell_payloads: Vec<&'static mut [u8]>, /// Prefix sum of cells in each page.