From a4479393d84aa43e9feeae66d6cf1691d9ad573a Mon Sep 17 00:00:00 2001 From: DevilExileSu <39342795+DevilExileSu@users.noreply.github.com> Date: Wed, 23 Nov 2022 23:35:59 +0800 Subject: [PATCH] fix #1129: mispell, is_file_tpe() -> is_file_type() (#1130) --- src/storage/blocksstable/ob_index_block_builder.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/blocksstable/ob_index_block_builder.h b/src/storage/blocksstable/ob_index_block_builder.h index 91b639427..beaa1b895 100644 --- a/src/storage/blocksstable/ob_index_block_builder.h +++ b/src/storage/blocksstable/ob_index_block_builder.h @@ -128,7 +128,7 @@ public: bool is_empty() const { return addr_.is_none(); } void set_empty(); bool is_mem_type() const { return addr_.is_memory(); } - bool is_file_tpe() const { return addr_.is_file(); } + bool is_file_type() const { return addr_.is_file(); } TO_STRING_KV(K_(addr), KP_(buf), K_(row_type), K_(height)); public: storage::ObMetaDiskAddr addr_;