Skip to content

Commit

Permalink
fix constructor order
Browse files Browse the repository at this point in the history
  • Loading branch information
lnkuiper committed Jul 15, 2024
1 parent 3c17832 commit c9c27a4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/execution/join_hashtable.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -750,8 +750,9 @@ void JoinHashTable::Probe(ScanStructure &scan_structure, DataChunk &keys, TupleD

ScanStructure::ScanStructure(JoinHashTable &ht_p, TupleDataChunkState &key_state_p)
: key_state(key_state_p), pointers(LogicalType::POINTER), sel_vector(STANDARD_VECTOR_SIZE),
chain_match_sel_vector(STANDARD_VECTOR_SIZE), chain_no_match_sel_vector(STANDARD_VECTOR_SIZE), ht(ht_p),
found_match(make_unsafe_uniq_array_for_override<bool>(STANDARD_VECTOR_SIZE)), finished(false), is_null(true) {
chain_match_sel_vector(STANDARD_VECTOR_SIZE), chain_no_match_sel_vector(STANDARD_VECTOR_SIZE),
found_match(make_unsafe_uniq_array_for_override<bool>(STANDARD_VECTOR_SIZE)), ht(ht_p), finished(false),
is_null(true) {
}

void ScanStructure::Next(DataChunk &keys, DataChunk &left, DataChunk &result) {
Expand Down

0 comments on commit c9c27a4

Please sign in to comment.