From a4643bcff20289c4c5d35e92743e7c85de7d4cc6 Mon Sep 17 00:00:00 2001 From: vdimir Date: Tue, 26 Jan 2021 16:19:13 +0300 Subject: [PATCH] Whitespace fixes --- src/Functions/FunctionStringOrArrayToT.h | 2 +- tests/queries/0_stateless/01592_length_map.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Functions/FunctionStringOrArrayToT.h b/src/Functions/FunctionStringOrArrayToT.h index efbfec2aba1..e00acc006cf 100644 --- a/src/Functions/FunctionStringOrArrayToT.h +++ b/src/Functions/FunctionStringOrArrayToT.h @@ -94,7 +94,7 @@ public: return col_res; } - else if (const ColumnMap* col_map = checkAndGetColumn(column.get())) + else if (const ColumnMap * col_map = checkAndGetColumn(column.get())) { auto col_res = ColumnVector::create(); typename ColumnVector::Container & vec_res = col_res->getData(); diff --git a/tests/queries/0_stateless/01592_length_map.sql b/tests/queries/0_stateless/01592_length_map.sql index 368029a5aac..e4e2b3c927b 100644 --- a/tests/queries/0_stateless/01592_length_map.sql +++ b/tests/queries/0_stateless/01592_length_map.sql @@ -5,4 +5,4 @@ select length(map()); select empty(map(1,2,3,4)); select empty(map()); select notEmpty(map(1,2,3,4)); -select notEmpty(map()); \ No newline at end of file +select notEmpty(map());