mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
Merge pull request #51651 from Alex-Cheng/correct_exception_message
Correct an exception message in src/Functions/nested.cpp
This commit is contained in:
commit
cf54866aef
@ -119,7 +119,7 @@ public:
|
|||||||
|
|
||||||
if (!lhs_array->hasEqualOffsets(*rhs_array))
|
if (!lhs_array->hasEqualOffsets(*rhs_array))
|
||||||
throw Exception(ErrorCodes::SIZES_OF_ARRAYS_DONT_MATCH,
|
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,
|
i + 1,
|
||||||
getName());
|
getName());
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user