doki23 edited a comment on pull request #2128:
URL:
https://github.com/apache/arrow-datafusion/pull/2128#issuecomment-1083964337
How about
```rust
let mut owned_string = Vec::with_capacity(args.len()-1);
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)
```
Or may be there a way to use [kernel
concat](https://docs.rs/arrow/11.0.0/arrow/compute/kernels/concat/index.html)?
--
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]