Description
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;
Attachments
Attachments
Issue Links
- duplicates
-
HIVE-10378 Hive Update statement set keyword work with lower case only and doesn't give any error if wrong column name specified in the set clause.
- Resolved