rizaon commented on pull request #1024: URL: https://github.com/apache/orc/pull/1024#issuecomment-1049336435
The Windows build failed the test with the following error ``` unknown file: error: SEH exception with code 0xc0000005 thrown in the test body. ``` This is due to the MemoryOutputStream being initialized in the createReader method and destructed before we start reading rows. This is fixed in [4745805](https://github.com/apache/orc/pull/1024/commits/474580534889b9a47fc7d71352ee9f01780f2192) by moving the MemoryOutputStream initialization to the Test body. A ctest argument `--output-on-failure` is also added in Windows workflow for better observability. @dongjoon-hyun @wgtmac this passes all tests now. -- 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]
