-
Notifications
You must be signed in to change notification settings - Fork 904
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
Implement string list concatenation #7929
Conversation
I think the name I would call this |
Thanks Mark. The name So, now we have one more name suggestion. For me, |
|
Here the API is part of the However, it seems that |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is looking good.
…rent range than the number of output strings
@gpucibot merge |
Given a lists column of strings (each row is a list of strings), this PR facilitates the concatenation of strings within each list.
For example:
This PR is similar to Spark's
concat_ws
, and closes #7727.