Skip to content

Commit

Permalink
Merge pull request #51651 from Alex-Cheng/correct_exception_message
Browse files Browse the repository at this point in the history
Correct an exception message in src/Functions/nested.cpp
  • Loading branch information
evillique committed Jul 20, 2023
2 parents f115e0f + f525d48 commit cf54866
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Functions/nested.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class FunctionNested : public IFunction

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());

Expand Down

0 comments on commit cf54866

Please sign in to comment.