Skip to content

Commit 44f51e8

Browse files
committed
Use only the timestamp for the sort
1 parent 3831ff6 commit 44f51e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/io/deephaven/benchmark/run/profile/queries/dashboards/adhoc_dashboard.dh.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def get_property_list_keys(table):
123123
return table.select_distinct(['name']).view(['key=name','label=name']).sort(['label'])
124124

125125
def get_setids(bench_results):
126-
setids = bench_results.sort(['set_id','timestamp']).select_distinct(['set_id'])
126+
setids = bench_results.sort(['timestamp']).select_distinct(['set_id'])
127127
return [row.set_id for row in setids.iter_tuple()]
128128

129129
def load_results_tables(parent_table, actor, prefix):

0 commit comments

Comments
 (0)