Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel39 committed Dec 31, 2024
1 parent 0ea943e commit 2f49d24
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion be/src/runtime/fragment_mgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,6 @@ inline uint32_t get_map_id(const TUniqueId& query_id, size_t capacity) {
inline uint32_t get_map_id(std::pair<TUniqueId, int> key, size_t capacity) {
uint32_t value = HashUtil::hash(&key.first.lo, 8, 0);
value = HashUtil::hash(&key.first.hi, 8, value);
value = HashUtil::hash(&key.second, 4, value);
return value % capacity;
}

Expand Down

0 comments on commit 2f49d24

Please sign in to comment.