SQL
AخA
SELECT rc_timestamp AS "Time", rc_title AS Page, rc_new_len-rc_old_len AS "±", CONCAT("Special:Diff/", rc_this_oldid) AS Diff, actor_name AS Editor, comment_text AS Summary
FROM recentchanges
JOIN `comment` ON comment_id = rc_comment_id AND comment_text LIKE "%Correct typos in one click%"
JOIN actor ON actor_id = rc_actor
WHERE rc_namespace = 0 AND (
rc_new_len < rc_old_len - 10
OR rc_new_len > rc_old_len + 85
OR rc_new_len > rc_old_len + 10 AND comment_text NOT LIKE "%{{%" AND comment_text NOT LIKE "%added template%")
AND NOT EXISTS (SELECT 1 FROM change_tag WHERE ct_rc_id = rc_id AND ct_tag_id = 590) /* NOT mw_reverted */
ORDER BY rc_timestamp
By running queries you agree to the Cloud Services Terms of Use and you irrevocably agree to release your SQL under CC0 License.
All SQL code is licensed under CC0 License.