Merge pull request #29246 from MaxWk/fix-spell-error

fix spell error
This commit is contained in:
Maksim Kita 2021-09-22 11:36:03 +03:00 committed by GitHub
commit d3c46ebe88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,7 @@ namespace
// This range is hardcoded below // This range is hardcoded below
if (precision_param > 20 || precision_param < 12) if (precision_param > 20 || precision_param < 12)
throw Exception( 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; precision = precision_param;
} }