set enable_result_cache_for_session = off; :EXPLAIN -- start query 55 in stream 0 using template query22.tpl and seed 1483183942 with results as (select i_product_name ,i_brand ,i_class ,i_category ,avg(inv_quantity_on_hand) qoh from inventory ,date_dim ,item ,warehouse where inv_date_sk=d_date_sk and inv_item_sk=i_item_sk and inv_warehouse_sk = w_warehouse_sk and d_month_seq between 1178 and 1178 + 11 group by i_product_name,i_brand,i_class,i_category), results_rollup as (select i_product_name, i_brand, i_class, i_category,avg(qoh) qoh from results group by i_product_name,i_brand,i_class,i_category union all select i_product_name, i_brand, i_class, null i_category,avg(qoh) qoh from results group by i_product_name,i_brand,i_class union all select i_product_name, i_brand, null i_class, null i_category,avg(qoh) qoh from results group by i_product_name,i_brand union all select i_product_name, null i_brand, null i_class, null i_category,avg(qoh) qoh from results group by i_product_name union all select null i_product_name, null i_brand, null i_class, null i_category,avg(qoh) qoh from results) select i_product_name, i_brand, i_class, i_category,qoh from results_rollup order by qoh, i_product_name, i_brand, i_class, i_category limit 100; -- end query 55 in stream 0 using template query22.tpl