From 956c2f4378a16a40f74924d2bc9047777dde387f Mon Sep 17 00:00:00 2001 From: Heikki Linnakangas Date: Thu, 3 Jul 2025 16:16:42 +0300 Subject: [PATCH] cargo fmt --- pgxn/neon/communicator/src/integrated_cache.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pgxn/neon/communicator/src/integrated_cache.rs b/pgxn/neon/communicator/src/integrated_cache.rs index 4ec2682710..38de1fa729 100644 --- a/pgxn/neon/communicator/src/integrated_cache.rs +++ b/pgxn/neon/communicator/src/integrated_cache.rs @@ -742,7 +742,8 @@ impl<'t> IntegratedCacheReadAccess<'t> { /// Check if the given page is present in the cache pub fn cache_contains_page(&'t self, rel: &RelTag, block_number: u32) -> bool { self.block_map - .get(&BlockKey::from((rel, block_number))).is_some() + .get(&BlockKey::from((rel, block_number))) + .is_some() } }