我正在运行以下配置单元查询。 mapreduce完成后,我看到没有插入数据。
create table t_123 as
select * from
(
select * from t1 union all
select * from t2 union all
select * from t3
) X
但是,如果我只是运行下面的选择查询,我得到结果。 t1,t2和t3的数据类型相同。接近结束时,我得到以下声明:
"numFiles = 27 , numRows = 0 and totalSize = 34567...."
select * from t1 union all
select * from t2 union all
select * from t3
任何想法可能是什么问题。我正在使用TEZ运行它。