From d05ce9f32c4ec0ba0f73a02dda19910f037955e6 Mon Sep 17 00:00:00 2001 From: xufei Date: Mon, 6 Feb 2023 12:21:17 +0800 Subject: [PATCH] fix bug Signed-off-by: xufei --- dbms/src/Interpreters/Aggregator.h | 1 + 1 file changed, 1 insertion(+) diff --git a/dbms/src/Interpreters/Aggregator.h b/dbms/src/Interpreters/Aggregator.h index 0a54962c527..1b4208e6b0f 100644 --- a/dbms/src/Interpreters/Aggregator.h +++ b/dbms/src/Interpreters/Aggregator.h @@ -743,6 +743,7 @@ struct AggregatedDataVariants : private boost::noncopyable { \ const auto * ptr = reinterpret_cast(aggregation_method_impl); \ bytes_count = ptr->data.getBufferSizeInBytes(); \ + break; \ } APPLY_FOR_AGGREGATED_VARIANTS(M)