From 96c30be4887491e802e4b978deba36aa0167b9da Mon Sep 17 00:00:00 2001 From: Pere Diaz Bou Date: Tue, 24 Jun 2025 20:10:39 +0200 Subject: [PATCH] more clippy --- core/storage/wal.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/storage/wal.rs b/core/storage/wal.rs index 0bab6835d..39532d6c6 100644 --- a/core/storage/wal.rs +++ b/core/storage/wal.rs @@ -965,7 +965,7 @@ impl WalFile { )); } - let header = unsafe { shared.get().as_mut().unwrap().wal_header.lock().clone() }; + let header = unsafe { shared.get().as_mut().unwrap().wal_header.lock() }; Self { io, // default to max frame in WAL, so that when we read schema we can read from WAL too if it's there.