Fixed style [#CLICKHOUSE-2]

This commit is contained in:
Alexey Milovidov 2018-05-07 05:07:17 +03:00
parent 90427db854
commit 619a0dbd8c

View File

@ -220,10 +220,8 @@ private:
auto out = typeid_cast<ColumnVector<T> *>(out_untyped);
if (!out)
{
throw Exception{
"Illegal column " + out_untyped->getName() + " of elements of array of third argument of function " + getName()
+ ", must be " + in->getName(),
ErrorCodes::ILLEGAL_COLUMN};
throw Exception{"Illegal column " + out_untyped->getName() + " of elements of array of third argument of function " + getName()
+ ", must be " + in->getName(), ErrorCodes::ILLEGAL_COLUMN};
}
executeImplNumToNum<T>(in->getData(), out->getData());