Skip to content

Commit

Permalink
fix to orderby clause in gc_case proc
Browse files Browse the repository at this point in the history
  • Loading branch information
larrybabb committed Oct 7, 2024
1 parent ed5d10d commit 0e282c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/tracker-procs/03-gc-report-proc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ BEGIN
gc_case.variation_id,
gc_case.lab_id as submitter_id,
gc_case.case_report_key,
STRING_AGG(DISTINCT FORMAT("%%s.%%i", lab_scv.id, lab_scv.version) ORDER BY lab_scv.id, lab_scv.version) as acxn,
STRING_AGG(DISTINCT FORMAT("%%s.%%i", lab_scv.id, lab_scv.version)) as acxn,
STRING_AGG(DISTINCT lab_scv.classif_type ORDER BY lab_scv.classif_type) as classif_type,
STRING_AGG(DISTINCT lab_scv.submitted_classification ORDER BY lab_scv.submitted_classification) as classification,
MIN(lab_scv.last_evaluated) as last_evaluated,
Expand Down

0 comments on commit 0e282c9

Please sign in to comment.