Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix "Orphaned article deletion discussions" report by joining linktarget #114

Merged
merged 1 commit into from
Jun 24, 2024
Merged
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
5 changes: 2 additions & 3 deletions dbreps2/src/enwiki/orphanedafds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,9 @@ FROM
page
JOIN revision ON page_id = rev_page
LEFT JOIN pagelinks ON pl_title = page_title
AND pl_namespace = page_namespace
/* FIXME JOIN linktarget */
JOIN linktarget AS lt1 ON lt1.lt_id = pl_target_id AND lt1.lt_namespace = 4
LEFT JOIN templatelinks ON tl_title = page_title
AND tl_namespace = page_namespace
JOIN linktarget AS lt2 ON lt2.lt_id = tl_target_id AND lt2.lt_namespace = 4
WHERE
page_namespace = 4
AND page_is_redirect = 0
Expand Down