jonkeane commented on pull request #11898: URL: https://github.com/apache/arrow/pull/11898#issuecomment-990191751
Not finding code-gen looks like a redherring: the same thing happens in the windows build in passing builds as well: https://github.com/apache/arrow/runs/4472915056?check_suite_focus=true#step:18:23 We might want to look into that separately (e.g. make a jira for why it's happening and determine if it's a problem), but it's not what is causing your failures here. If I'm reading the error correctly: ``` Error: Error: R CMD check found ERRORs array_to_vector.cpp:923:62: error: typedef 'using DecimalArray = typename arrow::TypeTraits<T>::ArrayType' locally defined but not used [-Werror=unused-local-typedefs] using DecimalArray = typename TypeTraits<Type>::ArrayType; ^ ``` it sounds like you're defining the DecimalArray type locally, but not using it. Have you tried [removing this line](https://github.com/apache/arrow/pull/11898/files#diff-090c5cff4eadd62a121e85babd186c9838055d2757670971204817eb2d96211aR923) and seeing if things compile ok? -- 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]
