You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(aggregate transform): use Euclidean division for event-time buckets
Rust integer `/` truncates toward zero, so negative millis (e.g. just
before the Unix epoch) were aligned to bucket 0 instead of the correct
window start. Use `div_euclid` for consistent half-open window alignment.
Adds a regression test for timestamp -1 ms at interval 10s.
Co-authored-by: Cursor <cursoragent@cursor.com>
0 commit comments