Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions database/scripts/get_known_issues.sql
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
SELECT error_name,
test_fail_issues.job_name,
github_issue,
status,
server_status.project,
server_status.domain
FROM test_fail_issues
INNER JOIN server_status ON server_status.job_name = test_fail_issues.job_name
WHERE status LIKE "%@param1@%";
SELECT
t.github_issue,
t.status,
t.assignee,
t.priority,
t.created_at,
t.issue_last_activity
FROM test_fail_issues t
INNER JOIN server_status s
ON s.job_name = t.job_name
WHERE t.status LIKE "%@param1@%"
AND t.github_issue IS NOT NULL;