Skip to content

Commit

Permalink
Fix "Orphaned article deletion discussions" report by joining linktarget
Browse files Browse the repository at this point in the history
  • Loading branch information
legoktm committed Jun 24, 2024
1 parent d76cff1 commit 28a94ed
Showing 1 changed file with 2 additions and 3 deletions.
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

0 comments on commit 28a94ed

Please sign in to comment.