Skip to content

Commit 19c77bd

Browse files
authored
feat: Sort Ahoc Sets by Benchmark Time (#416)
1 parent 324ef4e commit 19c77bd

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.select_distinct(['set_id']).sort_descending(['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)