https://bugzilla.wikimedia.org/show_bug.cgi?id=35610
Platonides <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #11 from Platonides <[email protected]> 2012-04-05 14:29:55 UTC --- Contributions imported from a foreign wiki aren't stored with the rev_user of the account, but with rev_user = 0 and only linked through rev_user_text. In this case I think that all those missing are revisions coming from old wikisource. SELECT count(*) FROM revision WHERE rev_user_text = 'Caton'; +----------+ | count(*) | +----------+ | 3220 | +----------+ But most of them are imported: SELECT rev_user, count(*) FROM revision WHERE rev_user_text = 'Caton' GROUP BY rev_user; +----------+----------+ | rev_user | count(*) | +----------+----------+ | 0 | 3216 | | 44 | 4 | +----------+----------+ Special:Contributions used to filter by rev_user_text, so all of them were listed. That seems to have been changed in 1.19 and should be reverted. -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
