You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@hive.apache.org by "Naresh P R (JIRA)" <ji...@apache.org> on 2017/10/19 10:42:00 UTC

[jira] [Created] (HIVE-17845) insert fails if target table columns are not lowercase

Naresh P R created HIVE-17845:
---------------------------------

             Summary: insert fails if target table columns are not lowercase
                 Key: HIVE-17845
                 URL: https://issues.apache.org/jira/browse/HIVE-17845
             Project: Hive
          Issue Type: Bug
    Affects Versions: 1.2.1
            Reporter: Naresh P R
            Assignee: Naresh P R
            Priority: Minor
             Fix For: 2.3.0


eg., 
INSERT INTO TABLE EMP(ID,NAME) select * FROM SRC;
FAILED: SemanticException 1:27 '[ID,NAME]' in insert schema specification are not found among regular columns of default.EMP nor dynamic partition columns.. Error encountered near token 'NAME'

Whereas below insert is successful:
INSERT INTO TABLE EMP(id,name) select * FROM SRC;



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)