commit fa695241b1f500dc04f46a40747529c073e0dc9f
parent ceb908f71073963dc31e6f31267d1f3397b056fb
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date: Fri, 20 Sep 2024 22:53:12 +0200
doc: fix missing semicolon
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
@@ -54,7 +54,7 @@ create or replace view score_summary
select a.id as athlete_id, s.heat as heat_id, SUM(s.score) as score_summary
from scores s
join athletes as a on a.id = s.athlete
- group by a.id, s.heat
+ group by a.id, s.heat;
-- Create distinct set of athletes (startlist) from a set of heats
create or replace function distinct_startlist(heat_ids numeric[])