dijkspicy opened a new issue #7726: longMin/longMax has different result, 
should unify?
URL: https://github.com/apache/incubator-druid/issues/7726
 
 
   two sql statement: (col < 0) is always false
   1. select max(col) filter(where col < 0) from datasource;
   2. select max(col) from datasource where col <0;
   
   we convert these two into two http message while both use longMax 
aggregator, but 1. sql will return Long.MIN_VALUE, 2. sql will return empty. 
should these two results combined one?

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

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

Reply via email to