hortonworks-spark / spark-llap

Apache License 2.0
101 stars 68 forks source link

spark sql llap insert into partition select would be error #271

Open xiasha-lucky opened 5 years ago

xiasha-lucky commented 5 years ago

the sql execute on spark thriftserver and set spark.sql.hive.llap=true for example: insert into table tab_test partition(p_age=10,p_name='a') select name,age,num1,num2,msg from tab_test; the error is : p_age is not a valid partition column in table unknown. the partition had created for the table but execute just on spark thriftserver and set spark.sql.hive.llap=false is success and execute on hive success also