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

Commit 365c7dd

Browse files
committed
fix broken rounds exception (common large error log causing later connection problems)
1 parent 29add24 commit 365c7dd

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

queries/get_rounds_for_problem

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ 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,
6-
r.editorial_link
5+
(SELECT name FROM contest c WHERE c.contest_id = r.contest_id) AS contest_name
76
FROM
87
problem p
98
INNER JOIN component c ON c.problem_id = p.problem_id

0 commit comments

Comments
 (0)