Update src/Functions/formatReadableTimeDelta.cpp

Co-authored-by: Nikolay Degterinsky <43110995+evillique@users.noreply.github.com>
This commit is contained in:
Robert Schulze 2022-07-19 13:17:33 +02:00 committed by GitHub
parent 81ef1099cc
commit 9d0e3d107b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -122,7 +122,7 @@ public:
throw Exception(ErrorCodes::BAD_ARGUMENTS, throw Exception(ErrorCodes::BAD_ARGUMENTS,
"Unexpected value of maximum unit argument ({}) for function {}, the only allowed values are:" "Unexpected value of maximum unit argument ({}) for function {}, the only allowed values are:"
" 'seconds', 'minutes', 'hours', 'days', 'months', 'years'.", " 'seconds', 'minutes', 'hours', 'days', 'months', 'years'.",
std::string(maximum_unit_str), getName()); maximum_unit_str, getName());
auto col_to = ColumnString::create(); auto col_to = ColumnString::create();