From 1a073f700fa6cd6fb3f7344ae41eca9345f1f21c Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Mon, 23 Nov 2020 05:44:42 +0300 Subject: [PATCH] Fix exception message --- src/AggregateFunctions/AggregateFunctionGroupArrayInsertAt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AggregateFunctions/AggregateFunctionGroupArrayInsertAt.h b/src/AggregateFunctions/AggregateFunctionGroupArrayInsertAt.h index d84c99aec5..6a5f2fbc89 100644 --- a/src/AggregateFunctions/AggregateFunctionGroupArrayInsertAt.h +++ b/src/AggregateFunctions/AggregateFunctionGroupArrayInsertAt.h @@ -80,7 +80,7 @@ public: } if (!isUnsignedInteger(arguments[1])) - throw Exception("Second argument of aggregate function " + getName() + " must be integer.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT); + throw Exception("Second argument of aggregate function " + getName() + " must be unsigned integer.", ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT); if (default_value.isNull()) default_value = type->getDefault(); -- GitLab