fx19880617 opened a new pull request #6249:
URL: https://github.com/apache/incubator-pinot/pull/6249


   ## Description
   Per https://github.com/apache/incubator-pinot/issues/6243, adding logical 
functions support(AND/OR) so we can power more expressions in CASE-WHEN 
statement.
   
   Below is a sample query we can support now:
   ```
   SELECT
       numberOfGames, 
       CASE
           WHEN (numberOfGames >= 50 OR numberOfGames < 30) THEN 5
           WHEN numberOfGames >= 40 THEN 4
           ELSE 0
       END AS columnA
   FROM baseballStats
   ```


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



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

Reply via email to