From 8c7b6137bc3c271bfd019b1991d400db3c7791d4 Mon Sep 17 00:00:00 2001 From: Sergi Vladykin Date: Sun, 26 May 2019 13:02:48 +0300 Subject: [PATCH] Code style fixed. --- .../AggregateFunctions/AggregateFunctionGroupBitmapData.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dbms/src/AggregateFunctions/AggregateFunctionGroupBitmapData.h b/dbms/src/AggregateFunctions/AggregateFunctionGroupBitmapData.h index 72cc6aace08..7b711d712d0 100644 --- a/dbms/src/AggregateFunctions/AggregateFunctionGroupBitmapData.h +++ b/dbms/src/AggregateFunctions/AggregateFunctionGroupBitmapData.h @@ -314,7 +314,8 @@ public: { if (isSmall()) { - if (r1.isSmall()) { + if (r1.isSmall()) + { for (const auto & x : r1.small) if (small.find(x.getValue()) != small.end()) return 1; @@ -352,7 +353,8 @@ public: if (small.find(x.getValue()) == small.end()) return 0; } - else { + else + { UInt64 r1_size = r1.size(); if (r1_size > small.size())