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 AfD" query #81

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
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
Loading