Skip to content

Commit

Permalink
Add count_where into the python rollup test.
Browse files Browse the repository at this point in the history
  • Loading branch information
lbooker42 committed Dec 20, 2024
1 parent d348e3f commit a9ffa4f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion py/server/tests/test_rollup_tree_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import unittest

from deephaven import read_csv, empty_table
from deephaven.agg import sum_, avg, count_, first, last, max_, min_, std, abs_sum, \
from deephaven.agg import sum_, avg, count_, count_where, first, last, max_, min_, std, abs_sum, \
var
from deephaven.filters import Filter
from deephaven.table import NodeType
Expand All @@ -18,6 +18,7 @@ def setUp(self):
self.aggs_for_rollup = [
avg(["aggAvg=var"]),
count_("aggCount"),
count_where("aggCountWhere", "var > 0"),
first(["aggFirst=var"]),
last(["aggLast=var"]),
max_(["aggMax=var"]),
Expand Down

0 comments on commit a9ffa4f

Please sign in to comment.