我试图在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 中运行良好。有什么建议吗?
提前谢谢。
1条答案
按热度按时间mepcadol1#
由于存在空的
as
在选择中