X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=sql%2Fccbs.sql;h=4cdf07b9c32b3892c5dbda59a7bd2c345ac7f20e;hb=0b7e0d1e9e1c510618a6c20798adb822720eecdb;hp=cb440e8005016a1ebbf7f26025138fed90903f76;hpb=4c387786f5c01ee45c3b07709c27f6977c6ef8ab;p=ccbs diff --git a/sql/ccbs.sql b/sql/ccbs.sql index cb440e8..4cdf07b 100644 --- a/sql/ccbs.sql +++ b/sql/ccbs.sql @@ -123,6 +123,7 @@ CREATE TABLE rounds ( chosensongs INTEGER NOT NULL, numqualifying INTEGER, + UNIQUE (tournament, player), PRIMARY KEY (tournament, round) ); @@ -330,8 +331,8 @@ BEGIN FOR tp IN SELECT * FROM temp_minmax LOOP ret.player = tp.player; - ret.best_rank = 1 + ( SELECT COUNT(*) FROM temp_minmax WHERE min_score >= tp.max_score AND player<>tp.player); - ret.worst_rank = 1 + ( SELECT COUNT(*) FROM temp_minmax WHERE max_score > tp.min_score AND player<>tp.player ); + ret.best_rank = 1 + ( SELECT COUNT(*) FROM temp_minmax WHERE min_score > tp.max_score AND player<>tp.player); + ret.worst_rank = 1 + ( SELECT COUNT(*) FROM temp_minmax WHERE max_score >= tp.min_score AND player<>tp.player ); RETURN NEXT ret; END LOOP; @@ -342,4 +343,36 @@ END; LANGUAGE plpgsql VOLATILE -- not really, but needed for the TEMPORARY TABLE RETURNS NULL ON NULL INPUT; - + +-- get_minmax_score_for_players(tournament, playmode) +CREATE TYPE minmax_rank_entire_tournament AS ( + round INTEGER, + parallel INTEGER, + player INTEGER, + best_rank INTEGER, + worst_rank INTEGER +); +CREATE FUNCTION get_minmax_rank_for_players(integer, varchar) RETURNS SETOF minmax_rank_entire_tournament + AS $$ +DECLARE + ret minmax_rank_entire_tournament; + tr record; + tp record; +BEGIN + FOR tr IN SELECT * FROM groups WHERE tournament=$1 LOOP + ret.round = tr.round; + ret.parallel = tr.parallel; + + FOR tp IN SELECT * FROM get_minmax_rank_for_players($1, tr.round, tr.parallel, $2) LOOP + ret.player = tp.player; + ret.best_rank = tp.best_rank; + ret.worst_rank = tp.worst_rank; + RETURN NEXT ret; + END LOOP; + END LOOP; + RETURN; +END; + $$ + LANGUAGE plpgsql + STABLE + RETURNS NULL ON NULL INPUT;