Ted-Jiang commented on issue #18:
URL: https://github.com/apache/arrow-ballista/issues/18#issuecomment-1261865081

   I update the tpch-q3 to test, intend to use `o_shippriority = 'none'` to 
produce this
   ```
   select
       l_orderkey,
       sum(l_extendedprice * (1 - l_discount)) as revenue,
       o_orderdate,
       o_shippriority
   from
       customer,
       orders,
       lineitem
   where
           c_mktsegment = 'BUILDING'
     and c_custkey = o_custkey
     and l_orderkey = o_orderkey
     and o_orderdate < date '1995-03-15'
     and o_shippriority = 'none'
   group by
       l_orderkey,
       o_orderdate,
       o_shippriority
   order by
       revenue desc,
       o_orderdate;
   0 rows in set. Query took 11.347 seconds.
   
   ```
   
   @andygrove how could you produce this error?


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to