wjones127 commented on pull request #12324:
URL: https://github.com/apache/arrow/pull/12324#issuecomment-1028371974


   Current behavior of the basic concat function `c` is this:
   
   ```r
   > x <- Array$create(c(1, 2, 3))
   > y <- Array$create(c(4, 5, 6))
   > c(x, y)
   [[1]]
   Array
   <double>
   [
     1,
     2,
     3
   ]
   
   [[2]]
   Array
   <double>
   [
     4,
     5,
     6
   ]
   ```
   
   Could we make it so it uses this `concat_arrays` logic instead? Is that even 
possible?


-- 
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]


Reply via email to