Skip to content

Commit 4387d83

Browse files
committed
Merge branch 'array_functions_part_6' of github.com:Blargian/ClickHouse into array_functions_part_6
2 parents 823b269 + 76f711b commit 4387d83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Functions/array/arrayFill.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ regardless of any condition.
171171
{"source", "The source array to process [`Array(T)`](/sql-reference/data-types/array)."},
172172
{"[, cond1, ... , condN]", "Optional. N condition arrays providing additional arguments to the lambda function. [`Array(T)`](/sql-reference/data-types/array)."},
173173
};
174-
FunctionDocumentation::ReturnedValue returned_value_reverse = "";
174+
FunctionDocumentation::ReturnedValue returned_value_reverse = "Returns an array with replaced elements. [`Array(T)`](/sql-reference/data-types/array).";
175175
FunctionDocumentation::Examples examples_reverse = {
176176
{"Example with a single array", "SELECT arrayReverseFill(x -> not isNull(x), [1, null, 2, null]) AS res", "[1,2,2,NULL]"},
177177
{"Example with two arrays", "SELECT arrayReverseFill(x, y, z -> x > y AND x < z, [5, 3, 6, 2], [4, 7, 1, 3], [10, 2, 8, 5]) AS res;", "[5,6,6,2]"}

0 commit comments

Comments
 (0)