Fixed exception message

This commit is contained in:
Alexey Milovidov 2019-08-03 01:42:21 +03:00
parent 62053314bb
commit 7394d3e73a

View File

@ -156,9 +156,8 @@ private:
"The second argument of function " + getName() + " (number of buckets) must be positive number", ErrorCodes::BAD_ARGUMENTS); "The second argument of function " + getName() + " (number of buckets) must be positive number", ErrorCodes::BAD_ARGUMENTS);
if (unlikely(static_cast<UInt64>(buckets) > Impl::max_buckets)) if (unlikely(static_cast<UInt64>(buckets) > Impl::max_buckets))
throw Exception("The value of the second argument of function " + getName() + " (number of buckets) is not fit to " throw Exception("The value of the second argument of function " + getName() + " (number of buckets) must not be greater than "
+ DataTypeNumber<BucketsType>().getName(), + std::to_string(Impl::max_buckets), ErrorCodes::BAD_ARGUMENTS);
ErrorCodes::BAD_ARGUMENTS);
return static_cast<BucketsType>(buckets); return static_cast<BucketsType>(buckets);
} }