CurtHagenlocher commented on issue #44650: URL: https://github.com/apache/arrow/issues/44650#issuecomment-2484205484
I think the best thing to do here might be something like ``` public static IEqualityComparer<string> DefaultFieldNameComparer = StringComparer.Ordinal; ``` and then change the instances of `StringComparer.CurrentCulture` to be `DefaultFieldNameComparer`. This will give a better default while still letting users revert to the previous behavior globally simply by assigning a different value to the static field. -- 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]
