Skip to content
Draft
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
13 changes: 6 additions & 7 deletions dbreps2/src/enwiki/orphanedafds.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,18 +51,17 @@ SELECT
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 */
LEFT JOIN templatelinks ON tl_title = page_title
AND tl_namespace = page_namespace
LEFT JOIN linktarget ON lt_title = page_title
AND lt_namespace = page_namespace
LEFT JOIN pagelinks ON pl_target_id = lt_id
LEFT JOIN templatelinks ON tl_target_id = lt_id
WHERE
page_namespace = 4
AND page_is_redirect = 0
AND page_title LIKE "Articles_for_deletion/%"
AND rev_parent_id = 0
AND ISNULL(pl_namespace)
AND ISNULL(tl_namespace);
AND ISNULL(tl_from)
AND ISNULL(pl_from);
"#
}

Expand Down