Support union all without an outer select *
-------------------------------------------

                 Key: HIVE-1398
                 URL: https://issues.apache.org/jira/browse/HIVE-1398
             Project: Hadoop Hive
          Issue Type: Improvement
          Components: Query Processor
            Reporter: Ashish Thusoo
            Assignee: Ashish Thusoo


In hive for union alls the query has to be wrapped in an sub query as shown 
below:

select * from 
(select c1 from t1
  union all
  select c2 from t2);

This JIRA proposes to fix that to support

select c1 from t1
union all
select c2 from t2;


-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to