使用UNION ALL纵向合并表,当字段为空值时报错如下:
SQL 错误 [40000] [42000]: Error while compiling statement: FAILED: SemanticException org.apache.hadoop.hive.ql.metadata.HiveException: The column KEY._col1:0._col0 is not in the vectorization context column map {KEY._col0=0, KEY._col1=1}.
说明:客户端用的 DBeaver
尝试了各种方式解决,最终办法:
第一种:
在SQL前加上:
set hive.vectorized.execution.enabled=false;
如果是true就会报错。
第二种(推荐):
不用 UNION ALL 纵向合并,如果是对同一个数据表进行不同粒度的汇总,可换成用grouping sets,具体用法见:
Hive之grouping sets用法及grouping_id计算方法文章来源:https://www.toymoban.com/news/detail-768930.html
第三种(这种有时候可用,有时候还是报错):
把空字段用“常量”填充或者NULL填充(字段类型要保持一致)文章来源地址https://www.toymoban.com/news/detail-768930.html
到了这里,关于Hive SQL,使用UNION ALL 纵向合并表,当字段为空值时报错的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!