kgyrtkirk opened a new issue, #15423:
URL: https://github.com/apache/druid/issues/15423

   this testcase throws an exception uncoditionally; however it does not fail: 
as execution is stopped somewhere in `run()`
   ```
     @Test
     public void testX()
     {
       cannotVectorize();
       testBuilder()
           .sql(
               "SELECT "
                   + " TIME_FLOOR(__time, 'P1D') as dayLvl,\n"
                   + "  dim1,\n"
                   + "  HLL_SKETCH_ESTIMATE(DS_HLL(hllsketch_dim1,18,'HLL_4'), 
true),\n"
                   + "  1\n"
                   + "FROM\n"
                   + "  (select * from  druid.foo limit 10) ttt\n"
                   + "  WHERE  __time >= '1903-08-02' AND __time <= 
'2033-08-07'\n"
                   + "  and dim1 not like '%ikipedia' and l1 > -4\n"
                   + "  group by 1,2"
           )
           .run();
       throw new RuntimeException("unreachable");
     }
   ```


-- 
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]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to