配置单元字符串索引超出范围错误

t98cgbkg  于 2021-05-29  发布在  Hadoop
关注(0)|答案(1)|浏览(347)

我试图在hive(cloudera)中执行下面的查询,

select a.col1,a.col2
FROM t1 a LEFT SEMI JOIN (select * from t2 where y = 0) b on (a.col1 =b.x);

下面是我得到的错误,

Your query has the following error(s):

Error while compiling statement: FAILED: StringIndexOutOfBoundsException String index out of range: 0

我得到这个即使我只是跑 select * from t2 where y = 0 . 但同样的查询在 Impala 中运行良好。有什么建议吗?
提前谢谢。

相关问题