Whitespace fixes

This commit is contained in:
vdimir 2021-01-26 16:19:13 +03:00 committed by GitHub
parent 586def7fa3
commit a4643bcff2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ public:
return col_res;
}
else if (const ColumnMap* col_map = checkAndGetColumn<ColumnMap>(column.get()))
else if (const ColumnMap * col_map = checkAndGetColumn<ColumnMap>(column.get()))
{
auto col_res = ColumnVector<ResultType>::create();
typename ColumnVector<ResultType>::Container & vec_res = col_res->getData();

View File

@ -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());
select notEmpty(map());