Skip to content

Commit

Permalink
fix: return instead of continue
Browse files Browse the repository at this point in the history
  • Loading branch information
Taepper committed Jul 22, 2024
1 parent 93ba858 commit 03a500a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/silo/preprocessing/preprocessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -731,7 +731,7 @@ ColumnFunction createInsertionsLambda(
for (size_t row_in_chunk = 0; row_in_chunk < chunk_size; row_in_chunk++) {
const auto& value = vector.GetValue(row_in_chunk);
if (value.IsNull()) {
return;
continue;
}
for (const auto& child : duckdb::ListValue::GetChildren(value)) {
sequence_store.insertInsertion(
Expand Down

0 comments on commit 03a500a

Please sign in to comment.