You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Yuming Wang (Jira)" <ji...@apache.org> on 2022/08/26 01:38:00 UTC

[jira] [Created] (SPARK-40223) Cannot alter table with locale tr

Yuming Wang created SPARK-40223:
-----------------------------------

             Summary: Cannot alter table with locale tr
                 Key: SPARK-40223
                 URL: https://issues.apache.org/jira/browse/SPARK-40223
             Project: Spark
          Issue Type: Improvement
          Components: SQL
    Affects Versions: 3.4.0
            Reporter: Yuming Wang


How to reproduce this issue:
{code:scala}
  test("Test update stats with locale tr") {
    withSQLConf(SQLConf.CASE_SENSITIVE.key -> "true",
      SQLConf.AUTO_SIZE_UPDATE_ENABLED.key -> "true") {
      withLocale("tr") {
        val tabName = "tAb_I"
        withTable(tabName) {
          sql(s"CREATE TABLE $tabName(col_I int) USING PARQUET")
          sql(s"INSERT OVERWRITE TABLE $tabName SELECT 1")
        }
      }
    }
  }
{code}

Error:
{noformat}
Caused by: org.apache.hadoop.hive.ql.metadata.HiveException: [tab_ı]: is not a valid table name
	at org.apache.hadoop.hive.ql.metadata.Table.checkValidity(Table.java:192)
	at org.apache.hadoop.hive.ql.metadata.Hive.alterTable(Hive.java:623)
	at org.apache.hadoop.hive.ql.metadata.Hive.alterTable(Hive.java:612)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
{noformat}





--
This message was sent by Atlassian Jira
(v8.20.10#820010)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org