From 7201b2476e8971990f4b66088cc70cc08c3c875f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=87=E5=BA=B7?= Date: Wed, 22 Sep 2021 13:26:05 +0800 Subject: [PATCH] fix spell error --- src/AggregateFunctions/AggregateFunctionUniqCombined.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AggregateFunctions/AggregateFunctionUniqCombined.cpp b/src/AggregateFunctions/AggregateFunctionUniqCombined.cpp index e137937343b..2b7e0d97372 100644 --- a/src/AggregateFunctions/AggregateFunctionUniqCombined.cpp +++ b/src/AggregateFunctions/AggregateFunctionUniqCombined.cpp @@ -102,7 +102,7 @@ namespace // This range is hardcoded below if (precision_param > 20 || precision_param < 12) throw Exception( - "Parameter for aggregate function " + name + " is out or range: [12, 20].", ErrorCodes::ARGUMENT_OUT_OF_BOUND); + "Parameter for aggregate function " + name + " is out of range: [12, 20].", ErrorCodes::ARGUMENT_OUT_OF_BOUND); precision = precision_param; }