Skip to content
Open

docs #14

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/include/duckdb/execution/ht_entry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,8 @@ struct ht_entry_t { // NOLINT
hash_t value;
};

// uses an AND operation to apply the modulo operation instead of an if condition that could be branch mispredicted
// uses an AND operation to apply the modulo operation instead of an if condition that could result in a branch
// misprediction
inline void IncrementAndWrap(idx_t &offset, const uint64_t &capacity_mask) {
++offset &= capacity_mask;
}
Expand Down
Loading