Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
gropaul committed Mar 25, 2024
1 parent 30b63f4 commit dce4456
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/execution/join_hashtable.cpp
Original file line number Diff line number Diff line change
@@ -242,7 +242,9 @@ void JoinHashTable::GetRowPointers(DataChunk &keys, TupleDataChunkState &key_sta
state.salt_match_sel.set_index(salt_match_count, row_index);
salt_match_count += occupied;

row_ptr_insert_to[row_index] = entry.GetPointer();
// entry might be empty, so the pointer in the entry is nullptr, but this does not matter as the row
// will not be compared anyway as with an empty entry we are already done
row_ptr_insert_to[row_index] = entry.GetPointerOrNull();
}

if (salt_match_count == 0) {

0 comments on commit dce4456

Please sign in to comment.