This is an automated email from the ASF dual-hosted git repository.
kevingurney pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git
from 9b3bf08f78 GH-36752: [Python] Remove AWS SDK bundling when building
wheels (#36925)
add fefd96d4f8 GH-36961: [MATLAB] Add `arrow.tabular.Schema` class and
associated `arrow.schema` construction function (#37013)
No new revisions were added by this update.
Summary of changes:
matlab/src/cpp/arrow/matlab/error/error.h | 4 +
matlab/src/cpp/arrow/matlab/proxy/factory.cc | 2 +
.../src/cpp/arrow/matlab/tabular/proxy/schema.cc | 184 ++++++++
.../tabular/proxy/{record_batch.h => schema.h} | 25 +-
matlab/src/matlab/+arrow/+tabular/Schema.m | 96 +++++
.../{+internal/+proxy/validate.m => schema.m} | 25 +-
matlab/test/arrow/tabular/tSchema.m | 473 +++++++++++++++++++++
matlab/tools/cmake/BuildMatlabArrowInterface.cmake | 1 +
8 files changed, 790 insertions(+), 20 deletions(-)
create mode 100644 matlab/src/cpp/arrow/matlab/tabular/proxy/schema.cc
copy matlab/src/cpp/arrow/matlab/tabular/proxy/{record_batch.h => schema.h}
(64%)
create mode 100644 matlab/src/matlab/+arrow/+tabular/Schema.m
copy matlab/src/matlab/+arrow/{+internal/+proxy/validate.m => schema.m} (56%)
create mode 100644 matlab/test/arrow/tabular/tSchema.m