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
Fixesrapidsai#13855.
This commit fixes an erroneous assert check in range window functions,
where the wrong data-type is checked for timestamp order-by columns.
For timestamps, it's the duration::rep type that should be checked,
when accessing the order by column.
This fix allows ROLLING_TEST to complete correctly, in DEBUG mode.
ROLLING_TEST
seems to be failing asserts inDEBUG
builds, even though the results are correct.Fails this assert in
grouped_rolling.cu
.The instantiation type
T=int32_t
does not match thecol.type().id() == TIMESTAMP_DAYS
.The text was updated successfully, but these errors were encountered: