Skip to content

Commit

Permalink
Fix sorting of best result not providing a podium and further fix for…
Browse files Browse the repository at this point in the history
… cell name (#127)

* Fix oldest standing records query

* Fix best results off podium query
  • Loading branch information
campos20 authored Sep 30, 2024
1 parent fa07efd commit 0d3ddaf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ queries:
averages
where
the_rank <= 20
order by the_rank
- headers:
- Person
- Single
Expand Down Expand Up @@ -91,6 +92,7 @@ queries:
singles
where
the_rank <= 20
order by the_rank
title: Best result not providing a podium
groupName: Results
displayMode: SELECTOR
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ queries:
- Competition
sqlQuery: |-
select days,
e.cellName,
e.name,
wca_statistics_time_format(record, eventId, record_type) record,
record_type,
c3.name,
Expand Down Expand Up @@ -153,7 +153,7 @@ queries:
- Competition
sqlQuery: |-
select days,
e.cellName,
e.name,
wca_statistics_time_format(record, eventId, record_type) record,
record_type,
c2.name,
Expand Down

0 comments on commit 0d3ddaf

Please sign in to comment.