You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2023/06/22 03:01:37 UTC

[arrow] branch main updated (320ecbd119 -> cd6b2b5dca)

This is an automated email from the ASF dual-hosted git repository.

kou pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


    from 320ecbd119 MINOR: [CI] Bump actions/setup-go from 3 to 4 (#36195)
     add cd6b2b5dca GH-36177: [MATLAB] Add the Type object hierarchy to the MATLAB interface (#36210)

No new revisions were added by this update.

Summary of changes:
 matlab/src/matlab/+arrow/+type/BooleanType.m   | 22 ++++++++++
 matlab/src/matlab/+arrow/+type/Float32Type.m   | 22 ++++++++++
 matlab/src/matlab/+arrow/+type/Float64Type.m   | 22 ++++++++++
 matlab/src/matlab/+arrow/+type/ID.m            | 52 ++++++++++++++++++++++
 matlab/src/matlab/+arrow/+type/Int16Type.m     | 23 ++++++++++
 matlab/src/matlab/+arrow/+type/Int32Type.m     | 23 ++++++++++
 matlab/src/matlab/+arrow/+type/Int64Type.m     | 22 ++++++++++
 matlab/src/matlab/+arrow/+type/Int8Type.m      | 23 ++++++++++
 matlab/src/matlab/+arrow/+type/PrimitiveType.m | 33 ++++++++++++++
 matlab/src/matlab/+arrow/+type/Type.m          | 23 ++++++++++
 matlab/src/matlab/+arrow/+type/UInt16Type.m    | 22 ++++++++++
 matlab/src/matlab/+arrow/+type/UInt32Type.m    | 22 ++++++++++
 matlab/src/matlab/+arrow/+type/UInt64Type.m    | 22 ++++++++++
 matlab/src/matlab/+arrow/+type/UInt8Type.m     | 22 ++++++++++
 matlab/test/arrow/type/hPrimitiveType.m        | 51 ++++++++++++++++++++++
 matlab/test/arrow/type/tBooleanType.m          | 24 +++++++++++
 matlab/test/arrow/type/tFloat32Type.m          | 24 +++++++++++
 matlab/test/arrow/type/tFloat64Type.m          | 24 +++++++++++
 matlab/test/arrow/type/tID.m                   | 60 ++++++++++++++++++++++++++
 matlab/test/arrow/type/tInt16Type.m            | 24 +++++++++++
 matlab/test/arrow/type/tInt32Type.m            | 24 +++++++++++
 matlab/test/arrow/type/tInt64Type.m            | 24 +++++++++++
 matlab/test/arrow/type/tInt8Type.m             | 24 +++++++++++
 matlab/test/arrow/type/tUInt16Type.m           | 24 +++++++++++
 matlab/test/arrow/type/tUInt32Type.m           | 24 +++++++++++
 matlab/test/arrow/type/tUInt64Type.m           | 24 +++++++++++
 matlab/test/arrow/type/tUInt8Type.m            | 24 +++++++++++
 27 files changed, 728 insertions(+)
 create mode 100644 matlab/src/matlab/+arrow/+type/BooleanType.m
 create mode 100644 matlab/src/matlab/+arrow/+type/Float32Type.m
 create mode 100644 matlab/src/matlab/+arrow/+type/Float64Type.m
 create mode 100644 matlab/src/matlab/+arrow/+type/ID.m
 create mode 100644 matlab/src/matlab/+arrow/+type/Int16Type.m
 create mode 100644 matlab/src/matlab/+arrow/+type/Int32Type.m
 create mode 100644 matlab/src/matlab/+arrow/+type/Int64Type.m
 create mode 100644 matlab/src/matlab/+arrow/+type/Int8Type.m
 create mode 100644 matlab/src/matlab/+arrow/+type/PrimitiveType.m
 create mode 100644 matlab/src/matlab/+arrow/+type/Type.m
 create mode 100644 matlab/src/matlab/+arrow/+type/UInt16Type.m
 create mode 100644 matlab/src/matlab/+arrow/+type/UInt32Type.m
 create mode 100644 matlab/src/matlab/+arrow/+type/UInt64Type.m
 create mode 100644 matlab/src/matlab/+arrow/+type/UInt8Type.m
 create mode 100644 matlab/test/arrow/type/hPrimitiveType.m
 create mode 100644 matlab/test/arrow/type/tBooleanType.m
 create mode 100644 matlab/test/arrow/type/tFloat32Type.m
 create mode 100644 matlab/test/arrow/type/tFloat64Type.m
 create mode 100644 matlab/test/arrow/type/tID.m
 create mode 100644 matlab/test/arrow/type/tInt16Type.m
 create mode 100644 matlab/test/arrow/type/tInt32Type.m
 create mode 100644 matlab/test/arrow/type/tInt64Type.m
 create mode 100644 matlab/test/arrow/type/tInt8Type.m
 create mode 100644 matlab/test/arrow/type/tUInt16Type.m
 create mode 100644 matlab/test/arrow/type/tUInt32Type.m
 create mode 100644 matlab/test/arrow/type/tUInt64Type.m
 create mode 100644 matlab/test/arrow/type/tUInt8Type.m