diff --git a/src/common/src/hash/consistent_hash/mod.rs b/src/common/src/hash/consistent_hash/mod.rs index 98a970af5947d..5f42369248bab 100644 --- a/src/common/src/hash/consistent_hash/mod.rs +++ b/src/common/src/hash/consistent_hash/mod.rs @@ -13,6 +13,6 @@ // limitations under the License. pub mod bitmap; -pub mod compat; pub mod mapping; pub mod vnode; +pub mod vnode_count; diff --git a/src/common/src/hash/consistent_hash/compat.rs b/src/common/src/hash/consistent_hash/vnode_count.rs similarity index 100% rename from src/common/src/hash/consistent_hash/compat.rs rename to src/common/src/hash/consistent_hash/vnode_count.rs diff --git a/src/common/src/hash/mod.rs b/src/common/src/hash/mod.rs index e54376bed2d50..8ed8120671179 100644 --- a/src/common/src/hash/mod.rs +++ b/src/common/src/hash/mod.rs @@ -19,9 +19,9 @@ mod key_v2; pub mod table_distribution; pub use consistent_hash::bitmap::*; -pub use consistent_hash::compat::*; pub use consistent_hash::mapping::*; pub use consistent_hash::vnode::*; +pub use consistent_hash::vnode_count::*; pub use dispatcher::{calc_hash_key_kind, HashKeyDispatcher}; pub use key::{ Crc32HashCode, HashCode, HashKeyDe, HashKeySer, HeapNullBitmap, NullBitmap,