hbutani / spark-druid-olap

Sparkline BI Accelerator provides fast ad-hoc query capability over Logical Cubes. This has been folded into our SNAP Platform(http://bit.ly/2oBJSpP) an Integrated BI platform on Apache Spark.

Home Page:http://sparklinedata.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Project cols in order different from GB cols results in exception

jpullokkaran opened this issue · comments

When cols are specified in an order different from GB, query fails.

select cast(o_orderdate as date) as y, o_orderstatus as x
from orderLineItemPartSupplier
where o_orderdate = '1994-06-30'
group by o_orderstatus, cast(o_orderdate as date)
order by x, y