From 61a95fe82b10c403ff3e4bc8efba4782975aa24d Mon Sep 17 00:00:00 2001 From: Rivers Jin Date: Sat, 18 Jan 2025 09:54:26 +0800 Subject: [PATCH] [squash me] format --- src/storage/redis_metadata.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/storage/redis_metadata.cc b/src/storage/redis_metadata.cc index 2d05f3a04d6..9df1053262b 100644 --- a/src/storage/redis_metadata.cc +++ b/src/storage/redis_metadata.cc @@ -159,9 +159,7 @@ std::string ComposeSlotKeyPrefix(const Slice &ns, int slotid) { return output; } -std::string ComposeSlotKeyUpperBound(const Slice &ns, int slotid) { - return ComposeSlotKeyPrefix(ns, slotid + 1); -} +std::string ComposeSlotKeyUpperBound(const Slice &ns, int slotid) { return ComposeSlotKeyPrefix(ns, slotid + 1); } Metadata::Metadata(RedisType type, bool generate_version, bool use_64bit_common_field) : flags((use_64bit_common_field ? METADATA_64BIT_ENCODING_MASK : 0) | (METADATA_TYPE_MASK & type)),