在Hive中确实创建了表
CREATE TABLE sandbox.tmp_clients (
date_v timestamp,
new_col map<String,String>,
tel_n string,
tel_val string)
stored as orc
之后确实将数据上传到表并尝试选择
select * from sandbox.tmp_clients limit 1;
返回错误:
Failed with exception java.io.IOException:java.lang.RuntimeException: serious problem
如何解决这个问题?