risingwave_common/hash/mod.rs
1// Copyright 2025 RisingWave Labs
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15mod consistent_hash; // TODO: move this to a separate module
16mod dispatcher;
17mod key;
18mod key_v2;
19pub mod table_distribution;
20
21pub use consistent_hash::bitmap::*;
22pub use consistent_hash::mapping::*;
23pub use consistent_hash::vnode::*;
24pub use consistent_hash::vnode_count::*;
25pub use dispatcher::{HashKeyDispatcher, calc_hash_key_kind};
26pub use key::{
27 Crc32HashCode, HashCode, HashKeyDe, HashKeySer, HeapNullBitmap, MAX_GROUP_KEYS_ON_STACK,
28 NullBitmap, PrecomputedBuildHasher, PrecomputedHasher, StackNullBitmap, XxHash64HashCode,
29};
30pub use key_v2::*; // TODO: reconstruct codes