使用下面的HIVE查询我正在创建一个ORC格式的HIVE表,该表应该已经成功创建:
create table etl_stats.err_mstr_40sq_orc(audt_id int,err_col_lineage_id int,err_cd int, err_dscr string,cntxt_txt string, src_nm string, src_key string)
STORED AS ORC
LOCATION '/user/warehouse/hive';
该表已成功创建,但在我使用时进行交叉检查 “描述格式化;”,我得到低于输出
InputFormat: org.apache.hadoop.mapred.TextInputFormat
OutputFormat:org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat
我错过了什么?