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

   ```
     SELECT *,MILLIS_TO_TIMESTAMP(subQry.w_min) > '1920-05-19'
       FROM
       ( SELECT l2,l1,MIN(l1) OVER W as w_min
         FROM numfoo where l1 is null or dim1 = 'nonexistent'
             WINDOW W AS ( PARTITION BY l1 ORDER BY l1 ROWS BETWEEN UNBOUNDED 
PRECEDING AND CURRENT ROW )
       ) subQry
     WHERE MILLIS_TO_TIMESTAMP(subQry.w_min) > '1920-05-14'
   ```
   resultset
   ```
     - [null,null,0,true]
     - [null,null,0,true]
   ```
   
   which means that the `min` of 2 rows with `null` values were evaluated to `0`


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