格式错误
FAILED: ParseException line 1:17 cannot recognize input near ‘ods’ ‘.’ ‘test_result’ in destination specification
数据插入到数据表报错。
-- 错误实例 insert OVERWRITE ods.test_result PARTITION (dt) select * from ods.test_event where dt = '' -- 修正后 insert OVERWRITE TABLE ods.test_result PARTITION (dt) select * from ods.test_event where dt = ''



