We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 773681c commit bbeda6fCopy full SHA for bbeda6f
src/Functions/array/arrayConcat.cpp
@@ -83,7 +83,7 @@ REGISTER_FUNCTION(ArrayConcat)
83
FunctionDocumentation::Description description = "Combines arrays passed as arguments.";
84
FunctionDocumentation::Syntax syntax = "arrayConcat(arr1 [, arr2, ... , arrN])";
85
FunctionDocumentation::Arguments arguments = {
86
- {"arr1 [, arr2, ... , arrN]", "N number of arrays to concatinate. [`Array(T)`](/sql-reference/data-types/array)."}
+ {"arr1 [, arr2, ... , arrN]", "N number of arrays to concatenate. [`Array(T)`](/sql-reference/data-types/array)."}
87
};
88
FunctionDocumentation::ReturnedValue returned_value = "Returns a single combined array from the provided array arguments.";
89
FunctionDocumentation::Examples example = {{"Usage example", "SELECT arrayConcat([1, 2], [3, 4], [5, 6]) AS res", "[1,2,3,4,5,6]"}};
0 commit comments