You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by "kevingurney (via GitHub)" <gi...@apache.org> on 2023/05/22 18:23:20 UTC

[GitHub] [arrow] kevingurney commented on a diff in pull request #35561: GH-35558: [MATLAB] Add signed integer array MATLAB classes (i.e. `Int8Array`, `Int16Array`, `Int32Array`, `Int64Array`)

kevingurney commented on code in PR #35561:
URL: https://github.com/apache/arrow/pull/35561#discussion_r1200877008


##########
matlab/src/cpp/arrow/matlab/proxy/factory.cc:
##########
@@ -28,6 +28,10 @@ std::shared_ptr<Proxy> Factory::make_proxy(const ClassName& class_name, const Fu
     // Register MATLAB Proxy classes with corresponding C++ Proxy classes.
     REGISTER_PROXY(arrow.array.proxy.Float32Array, arrow::matlab::array::proxy::NumericArray<float>);
     REGISTER_PROXY(arrow.array.proxy.Float64Array, arrow::matlab::array::proxy::NumericArray<double>);
+    REGISTER_PROXY(arrow.array.proxy.Int8Array, arrow::matlab::array::proxy::NumericArray<int8_t>);
+    REGISTER_PROXY(arrow.array.proxy.Int16Array, arrow::matlab::array::proxy::NumericArray<int16_t>);
+    REGISTER_PROXY(arrow.array.proxy.Int32Array, arrow::matlab::array::proxy::NumericArray<int32_t>);
+    REGISTER_PROXY(arrow.array.proxy.Int64Array, arrow::matlab::array::proxy::NumericArray<int64_t>);

Review Comment:
   Fixed.



-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org