Skip to content

Commit

Permalink
make format-fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tmonster committed Jan 4, 2023
1 parent 750c1e3 commit 7e1a307
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/execution/reservoir_sample.cpp
Expand Up @@ -78,7 +78,7 @@ void ReservoirSample::ReplaceElement(DataChunk &input, idx_t index_in_chunk) {
for (idx_t col_idx = 0; col_idx < input.ColumnCount(); col_idx++) {
D_ASSERT(reservoir_chunk->GetCapacity() == sample_count);
reservoir_chunk->SetValue(col_idx, base_reservoir_sample.min_weighted_entry,
input.GetValue(col_idx, index_in_chunk));
input.GetValue(col_idx, index_in_chunk));
}
base_reservoir_sample.ReplaceElement();
}
Expand Down

0 comments on commit 7e1a307

Please sign in to comment.