wgtmac opened a new pull request, #36406: URL: https://github.com/apache/arrow/pull/36406
### Rationale for this change Apache ORC has released 1.9.0 recently: https://orc.apache.org/news/2023/06/28/ORC-1.9.0/ The code base does not compile if we upgrade directly due to a new API below: ```cpp virtual std::unique_ptr<ColumnVectorBatch> createRowBatch( uint64_t size, MemoryPool& pool, bool encoded = false) const = 0; virtual std::unique_ptr<ColumnVectorBatch> createRowBatch( uint64_t size, MemoryPool& pool, bool encoded = false, bool useTightNumericVector = false) const = 0; ``` ### What changes are included in this PR? Explicitly specify which overload of `createRowBatch` to use in the orc test. ### Are these changes tested? Yes, make sure all tests build and pass. ### Are there any user-facing changes? NO. -- 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]
