Skip to content

Commit

Permalink
fix(type): replaced varchar with string
Browse files Browse the repository at this point in the history
  • Loading branch information
vibhatha committed Aug 26, 2022
1 parent 0e0ffa9 commit 8cb4dbb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions extensions/functions_string.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -657,10 +657,10 @@ aggregate_functions:
description: Concatenates a column of string values with a separator.
impls:
- args:
- value: "varchar<L1>"
- value: "string"
name: "input"
description: "Column of string values."
- value: "varchar<L2>"
- value: "string"
name: "separator"
description: "Separator for concatenated strings"
return: "varchar<L1 + L2>"
return: "string"

0 comments on commit 8cb4dbb

Please sign in to comment.