update(DispatchChecker): print result sorted by runid

This commit is contained in:
Wataru Otsubo 2025-01-24 17:44:01 +09:00
parent dfde25a8dc
commit d824f2c938
2 changed files with 14 additions and 3 deletions

View file

@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Renamed `create_database_from_exported_csvs` to `create_database` and `create_database` to `create_empty_database`. (!1423)
- Exported `create_database`
- In `DispatchChecker.interactive_dispatch_checker`, printed results are now sorted by runid.
## [0.5.1] - 2025-01-23

View file

@ -114,9 +114,19 @@ function is_dispatchable(conn::DbConnection, psbid::Int64)
end
# TODO: not yet implemented
@info "results" single_results select(
@info "results" sort(single_results, :runid) sort(
select(
extra_results,
Not(:id, :num_tests, :dac_is_0, :bcid_fail_111, :bcid_fail_000, :low_efficiency),
Not(
:id,
:num_tests,
:dac_is_0,
:bcid_fail_111,
:bcid_fail_000,
:low_efficiency,
),
),
:runid,
)
@debug "results(full)" extra_results
return missing