mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 18:12:02 +00:00
Fixed style [#CLICKHOUSE-2]
This commit is contained in:
parent
90427db854
commit
619a0dbd8c
@ -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());
|
||||
|
Loading…
Reference in New Issue
Block a user