jackjlli opened a new issue #6243: URL: https://github.com/apache/incubator-pinot/issues/6243
With this PR (https://github.com/apache/incubator-pinot/pull/5461), we now can support CASE WHEN statement, while this PR only assumes that there is only 1 condition after CASE WHEN. Queries containing more than 1 condition like below will fail: ``` SELECT CASE WHEN 'timestamp' >= 1587073457690 AND 'timestamp' < 1587077057690 THEN 1 ELSE 0 END AS test, SUM(someId) FROM testTable GROUP BY columnA ``` We should fix this to accept stricter conditions. ---------------------------------------------------------------- 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: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org