sgilmore10 opened a new issue, #46877:
URL: https://github.com/apache/arrow/issues/46877
### Describe the enhancement requested
We should add a new static method called `fromRecordBatches` to the MATLAB
class `arrow.tabular.Table`. This method should construct an
`arrow.tabular.Table` from a variable number of `arrow.tabular.RecordBatch`es.
**Example**
```matlab
>> rb1 = arrow.recordBatch(table([1:5]', [6:10]'));
>> rb2 = arrow.recordBatch(table([11:15]', [16:20]'));
>> table = arrow.tabular.Table.fromRecordBatches(rb1, rb2)
table =
Arrow Table with 10 rows and 2 columns:
Schema:
Var1: Float64 | Var2: Float64
First Row:
1 | 6
```
### Component(s)
MATLAB
--
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]