-
Notifications
You must be signed in to change notification settings - Fork 753
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: support Array functions #7931
Labels
C-feature
Category: feature
Comments
Comments by @sundy-li :
|
This was referenced Feb 1, 2023
This was referenced Feb 6, 2023
There are two array-related aggregate functions are required from the user:
ClickHouse SQL like:
Or are these two functions easy to use window functions? |
we have
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Summary
Description for this feature.
common functions for array @TCeason
array_concat([2, 3], [4, 5, 6])
#9803array_has
aggr combinators @b41sh
array_<aggr>(array)
, eg:array_aggr([1,2,3], 'sum')
,array_aggr([1,2,3], 'avg')
,array_sum([1,2,3]
low-priority tasks:
array_transform([1,2,3], x -> x + 1)
array_filter([1,2,3], x -> x > 1)
select [x+3 for x in [1,2,3]]
The text was updated successfully, but these errors were encountered: