Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
2.0.0, 2.1.0, 2.2.0, 2.3.0
-
None
-
None
Description
If a grouping key hasn't been selected, Hive complains. For comparison, Postgres does not.
Example. Notice i_item_id is not selected:
select i_item_desc ,i_category ,i_class ,i_current_price ,sum(cs_ext_sales_price) as itemrevenue ,sum(cs_ext_sales_price)*100/sum(sum(cs_ext_sales_price)) over (partition by i_class) as revenueratio from catalog_sales ,item ,date_dim where cs_item_sk = i_item_sk and i_category in ('Jewelry', 'Sports', 'Books') and cs_sold_date_sk = d_date_sk and d_date between cast('2001-01-12' as date) and (cast('2001-01-12' as date) + 30 days) group by i_item_id ,i_item_desc ,i_category ,i_class ,i_current_price order by i_category ,i_class ,i_item_id ,i_item_desc ,revenueratio limit 100;
Attachments
Attachments
Issue Links
- is duplicated by
-
HIVE-16733 Support conflict column name in order by
- Resolved
-
HIVE-15966 Query with column alias fails in order by
- Open
- is related to
-
HIVE-18375 Cannot ORDER by subquery fields unless they are selected
- Open
- relates to
-
HIVE-24740 Invalid table alias or column reference: Can't order by an unselected column
- Open
- links to