-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
Is your feature request related to a problem or challenge?
Follow on to #6384
The basic idea is to create an empty array using the function array_make when it takes empty arguments. Also, all array functions must accept an empty array and work with it.
Describe the solution you'd like
Examples:
select make_array();
----
[]
select array_concat(trim_array(make_array(1, 2, 3), 3), make_array(4, 5), make_array())
----
[4, 5]
Describe alternatives you've considered
If in the course of conversations it turns out that the feature is useless.
Additional context
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers