raulcd commented on code in PR #46261:
URL: https://github.com/apache/arrow/pull/46261#discussion_r2137955410


##########
r/src/compute.cpp:
##########
@@ -621,6 +621,14 @@ std::vector<std::string> compute__GetFunctionNames() {
   return arrow::compute::GetFunctionRegistry()->GetFunctionNames();
 }
 
+// [[arrow::export]]
+void compute__Initialize() {
+#if ARROW_VERSION_MAJOR >= 21
+  auto status = arrow::compute::Initialize();
+  StopIfNotOk(status);
+#endif

Review Comment:
   Thanks @jonkeane you are correct, I did miss your PR being merged, the check 
doesn't seem necessary now. I've pushed 
https://github.com/apache/arrow/pull/46261/commits/7526369c2c20db6c46c6b6943bb60d51f6e7eab0
 removing the `#if ARROW_VERSION_MAJOR >= 21`



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