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

Commit 8ed1326

Browse files
committed
use empty string for editorial link
1 parent 365c7dd commit 8ed1326

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)