select a,b from tb1 这个sql能正常运行,
insert into table tb2 partition (dt = '20010101') select a,b from tb1 也能正常运行,
insert overwrite table tb2 partition (dt = '20010101') select a,b from tb1 却报错,报错如下:
Loading data to table bridge.sods_to_cio_libor_hold partition (biz_date=20170628) Failed with exception java.lang.IndexOutOfBoundsException: Index: 0, Size: 3 FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.MoveTask
请问这个是什么原因啊?