mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
Avoid using exception unsafe method
This commit is contained in:
parent
d24d3ae992
commit
0fb8ea530f
@ -856,9 +856,9 @@ void NO_INLINE Aggregator::executeImplBatch(
|
|||||||
#if USE_EMBEDDED_COMPILER
|
#if USE_EMBEDDED_COMPILER
|
||||||
if (compiled_functions)
|
if (compiled_functions)
|
||||||
{
|
{
|
||||||
if (params.aggregation_method == 0)
|
// if (params.aggregation_method == 0)
|
||||||
handleAggregationJIT<no_more_keys>(method, state, aggregates_pool, rows, aggregate_instructions);
|
// handleAggregationJIT<no_more_keys>(method, state, aggregates_pool, rows, aggregate_instructions);
|
||||||
else
|
// else
|
||||||
handleAggregationJITV2<no_more_keys>(method, state, aggregates_pool, rows, aggregate_instructions);
|
handleAggregationJITV2<no_more_keys>(method, state, aggregates_pool, rows, aggregate_instructions);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user