From 31fc0694820a494c6cd1a98ae272f75bf6694c15 Mon Sep 17 00:00:00 2001 From: Christian Schwarz Date: Thu, 4 Jan 2024 12:48:49 +0000 Subject: [PATCH] fixup --- pageserver/src/walingest.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pageserver/src/walingest.rs b/pageserver/src/walingest.rs index b91cb8620f..b47af64ed6 100644 --- a/pageserver/src/walingest.rs +++ b/pageserver/src/walingest.rs @@ -914,8 +914,8 @@ impl WalIngest { vm_rel, new_vm_blk.unwrap(), NeonWalRecord::ClearVisibilityMapFlags { - new_heap_blkno, - old_heap_blkno, + heap_blkno_1: new_heap_blkno, + heap_blkno_2: old_heap_blkno, flags, }, ctx, @@ -930,8 +930,8 @@ impl WalIngest { vm_rel, new_vm_blk, NeonWalRecord::ClearVisibilityMapFlags { - new_heap_blkno, - old_heap_blkno: None, + heap_blkno_1: new_heap_blkno, + heap_blkno_2: None, flags, }, ctx, @@ -944,8 +944,8 @@ impl WalIngest { vm_rel, old_vm_blk, NeonWalRecord::ClearVisibilityMapFlags { - new_heap_blkno: None, - old_heap_blkno, + heap_blkno_1: None, + heap_blkno_2: old_heap_blkno, flags, }, ctx,