Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
Signed-off-by: xufei <[email protected]>
  • Loading branch information
windtalker committed Apr 8, 2024
1 parent 47f31f5 commit 7c7f3b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbms/src/Interpreters/Aggregator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1332,7 +1332,7 @@ inline void Aggregator::insertAggregatesIntoColumns(
for (size_t destroy_i = 0; destroy_i < params.aggregates_size; ++destroy_i)
{
/// If ownership was not transferred to ColumnAggregateFunction.
if (destroy_i >= insert_i || !aggregate_functions[destroy_i]->isState()))
if (destroy_i >= insert_i || !aggregate_functions[destroy_i]->isState())
aggregate_functions[destroy_i]->destroy(mapped + offsets_of_aggregate_states[destroy_i]);
}

Expand Down

0 comments on commit 7c7f3b3

Please sign in to comment.