Github user srowen commented on a diff in the pull request:

    https://github.com/apache/spark/pull/17655#discussion_r111724069
  
    --- Diff: 
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/catalog/SessionCatalog.scala
 ---
    @@ -114,14 +114,14 @@ class SessionCatalog(
        * Format table name, taking into account case sensitivity.
        */
       protected[this] def formatTableName(name: String): String = {
    -    if (conf.caseSensitiveAnalysis) name else name.toLowerCase
    +    if (conf.caseSensitiveAnalysis) name else name.toLowerCase(Locale.ROOT)
    --- End diff --
    
    The problem I think is that this affects user apps and we were trying to 
avoid changes like this. The change was only about internal strings.
    
    I would imagine the fix is in a test, not the main code?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to