Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Song Gao <[email protected]>
  • Loading branch information
Yisaer committed Jan 6, 2025
1 parent 469b800 commit 80c422d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/en_US/sqls/functions/aggregate_functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ The last_value function is used to retrieve the value of the last row in a group
merge_agg(*)
merge_agg(col)
```
Supports incremental calculations.
Concatenate values from the group into a single value.
It concatenates multiple objects by generating an object containing the union of their keys,
Expand All @@ -101,7 +102,7 @@ It does not operate recursively; only the top-level object structure is merged.

If the parameter is a column,
the result will be an object containing the union of the keys of all the objects in the column.
If the column contains only non-object values, the result will be an empty object.
If the column contains only non-object values, the result will be an empty object.

### Examples

Expand Down

0 comments on commit 80c422d

Please sign in to comment.