Code style

This commit is contained in:
millb 2019-11-13 18:21:27 +03:00
parent 5acbc82ff8
commit 1820ed187e

View File

@ -727,9 +727,11 @@ private:
}
}
else
{
throw Exception("Illegal column " + column->getName()
+ " of argument of function " + getName(),
ErrorCodes::ILLEGAL_COLUMN);
+ " of argument of function " + getName(),
ErrorCodes::ILLEGAL_COLUMN);
}
}
template <typename T, bool first>
@ -751,6 +753,12 @@ private:
vec_to[i] = Impl::combineHashes(vec_to[i], h);
}
}
else
{
throw Exception("Illegal column " + column->getName()
+ " of first argument of function " + getName(),
ErrorCodes::ILLEGAL_COLUMN);
}
}
template <bool first>