Working test

This commit is contained in:
millb 2019-11-11 12:00:31 +03:00
parent 368bb5f217
commit 0ee1b46d40

View File

@ -846,6 +846,7 @@ private:
else if (which.isDecimal32()) executeIntType<Decimal32, first, ColumnDecimal<Decimal32>>(icolumn, vec_to);
else if (which.isDecimal64()) executeIntType<Decimal64, first, ColumnDecimal<Decimal64>>(icolumn, vec_to);
else if (which.isDecimal128()) executeIntType<Decimal128, first, ColumnDecimal<Decimal128>>(icolumn, vec_to);
else if (which.isUUID()) executeIntType<DataTypeUUID, first, ColumnVector<DataTypeUUID>>(icolumn, vec_to);
else
throw Exception("Unexpected type " + from_type->getName() + " of argument of function " + getName(),
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);