Merge pull request #51651 from Alex-Cheng/correct_exception_message

Correct an exception message in src/Functions/nested.cpp
This commit is contained in:
Nikolay Degterinsky 2023-07-20 10:56:45 +02:00 committed by GitHub
commit cf54866aef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,7 +119,7 @@ public:
if (!lhs_array->hasEqualOffsets(*rhs_array))
throw Exception(ErrorCodes::SIZES_OF_ARRAYS_DONT_MATCH,
"The argument 1 and argument {} of function {} have different array offsets",
"The argument 2 and argument {} of function {} have different array offsets",
i + 1,
getName());