doki23 commented on pull request #2128:
URL:
https://github.com/apache/arrow-datafusion/pull/2128#issuecomment-1083964337
How about
```
let mut owned_string = Vec::with_capacity(args.len());
for arg_index in 1..args.len() {
let arg = &args[arg_index];
if !arg.is_null(index) {
owned_string.push(arg.value(index));
}
}
owned_string.join(sep)
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]