From 0a914b41a84ebb330349c909f25186072cd5c47d Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Tue, 14 Mar 2017 00:48:58 +0300 Subject: [PATCH] Addition to prev. revision [#CLICKHOUSE-2]. --- dbms/include/DB/AggregateFunctions/AggregateFunctionNull.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/include/DB/AggregateFunctions/AggregateFunctionNull.h b/dbms/include/DB/AggregateFunctions/AggregateFunctionNull.h index 00fe9cf444d..c5eedac28d6 100644 --- a/dbms/include/DB/AggregateFunctions/AggregateFunctionNull.h +++ b/dbms/include/DB/AggregateFunctions/AggregateFunctionNull.h @@ -216,7 +216,7 @@ public: throw Exception("Logical error: single argument is passed to AggregateFunctionNullVariadic", ErrorCodes::LOGICAL_ERROR); if (number_of_arguments > MAX_ARGS) - throw Exception("Maximum number of arguments for aggregate function with Nullable types is " + toString(MAX_ARGS), + throw Exception("Maximum number of arguments for aggregate function with Nullable types is " + toString(size_t(MAX_ARGS)), ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH); DataTypes nested_args;