Skip to content

Commit

Permalink
feat: add string_agg aggregate function (#297)
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Sep 5, 2022
1 parent c47fffa commit fbe5e09
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions extensions/functions_string.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1263,3 +1263,19 @@ scalar_functions:
- value: i32
name: "count"
return: "string"

aggregate_functions:

-
name: string_agg
description: Concatenates a column of string values with a separator.
impls:
- args:
- value: "string"
name: "input"
description: "Column of string values."
- value: "string"
name: "separator"
constant: true
description: "Separator for concatenated strings"
return: "string"

0 comments on commit fbe5e09

Please sign in to comment.