From 9b7987cccf5ea02efbf894f53f87c72e2aad5b1a Mon Sep 17 00:00:00 2001 From: Jauhar Arifin Date: Tue, 6 Aug 2024 05:52:52 +0700 Subject: [PATCH] remove unused variables --- src/pager.rs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/pager.rs b/src/pager.rs index 2cf9cfe..e997132 100644 --- a/src/pager.rs +++ b/src/pager.rs @@ -986,14 +986,6 @@ impl Pager { struct PageMeta { id: PageId, kind: PageKind, - - // TODO: maybe we don't need to `is_mutated` field. We can - // infer it from the `rec_lsn` and `page_lsn` fields. If - // they are None, then it's a clean page, otherwise it's - // a dirty page. - // is_mutated: bool, - // rec_lsn: Option, - // page_lsn: Option, wal: Option, }