Skip to content

Commit

Permalink
Fix null-bounds calculation for ranged window queries
Browse files Browse the repository at this point in the history
  • Loading branch information
mythrocks committed Mar 11, 2021
1 parent 1544474 commit f4a0bdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/rolling/grouped_rolling.cu
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ get_null_bounds_for_timestamp_column(column_view const& timestamp_column,

if (timestamp_column.has_nulls()) {
auto p_timestamps_device_view = column_device_view::create(timestamp_column);
auto num_groups = group_offsets.size();
auto num_groups = group_offsets.size() - 1;

// Null timestamps exist. Find null bounds, per group.
thrust::for_each(
Expand Down

0 comments on commit f4a0bdf

Please sign in to comment.