Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit ac2036f

Browse files
committed
Merge branch 'SUP-214-api-stability' of https://github.com/cloudspokes/tc-api into dev
2 parents b0c3eb5 + 8ed1326 commit ac2036f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

queries/get_rounds_for_problem

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ SELECT
22
r.round_id,
33
r.name AS round_name,
44
r.contest_id,
5-
(SELECT name FROM contest c WHERE c.contest_id = r.contest_id) AS contest_name
5+
(SELECT name FROM contest c WHERE c.contest_id = r.contest_id) AS contest_name,
6+
"" AS editorial_link
67
FROM
78
problem p
89
INNER JOIN component c ON c.problem_id = p.problem_id

0 commit comments

Comments
 (0)