Skip to content

Commit

Permalink
update to COUNT_ALL
Browse files Browse the repository at this point in the history
  • Loading branch information
Niranjan Artal committed Mar 30, 2020
1 parent 9e39b09 commit f73c600
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion java/src/main/java/ai/rapids/cudf/WindowAggregate.java
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ private WindowAggregate(AggregateOp op, int columnIndex, WindowOptions windowOpt
}

public static WindowAggregate count(int columnIndex, WindowOptions windowOptions) {
return new WindowAggregate(AggregateOp.COUNT_VALID, columnIndex, windowOptions);
return new WindowAggregate(AggregateOp.COUNT_ALL, columnIndex, windowOptions);
}

public static WindowAggregate min(int columnIndex, WindowOptions windowOptions) {
Expand Down

0 comments on commit f73c600

Please sign in to comment.