kgyrtkirk commented on issue #15767:
URL: https://github.com/apache/druid/issues/15767#issuecomment-1911681351
at least 1 test which should pass after this is done:
```
type: "operatorValidation"
sql: |
SELECT
m1,
FLOOR(m1/3),
-- these must match as m1 will be 10/20..etc
https://github.com/apache/druid/issues/15767
m1 = SUM(m1) OVER (ORDER BY FLOOR(m1*10) RANGE BETWEEN 1 PRECEDING AND 1
FOLLOWING)
FROM foo
expectedResults:
- [1.0,0.0,true]
- [2.0,0.0,true]
- [3.0,1.0,true]
- [4.0,1.0,true]
- [5.0,1.0,true]
- [6.0,2.0,true]
```
--
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]