ChenKai created SPARK-28054:
-------------------------------

             Summary: Unable to insert partitioned table dynamically when 
partition name is upper case
                 Key: SPARK-28054
                 URL: https://issues.apache.org/jira/browse/SPARK-28054
             Project: Spark
          Issue Type: Bug
          Components: SQL
    Affects Versions: 2.4.3
            Reporter: ChenKai


{code:java}
-- create sql and column name is upper case
CREATE TABLE src (KEY INT, VALUE STRING) PARTITIONED BY (DS STRING)

-- insert sql
INSERT INTO TABLE src PARTITION(ds) SELECT 'k' key, 'v' value, '1' ds
{code}

The error is:

{code:java}
Error in query: 
org.apache.hadoop.hive.ql.metadata.Table.ValidationFailureSemanticException: 
Partition spec {ds=, DS=1} contains non-partition columns;
{code}



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to