pearu commented on issue #31816: URL: https://github.com/apache/arrow/issues/31816#issuecomment-4683172908
PR #50146 (primarily about CSV date/time parsing) includes a fix for this: the vendored musl `strptime` used on Windows compiles out all name-based specifiers because `nl_langinfo()` is unavailable there. The PR adds static C-locale name tables, making `%b`/`%B` (and `%a`/`%A`/`%h`) parse on Windows, case-insensitively, matching musl's C-locale behavior on Linux. Validated on Windows CI (MinGW CLANG64/MINGW64, MSVC Python wheel, RTools, MATLAB, and ARM64 MSVC). The issue's reproducer (`"2021 September 13"` with `"%Y %B %d"`) parses with that change. -- 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]
