https://bugzilla.wikimedia.org/show_bug.cgi?id=34877
Kunal Mehta (Legoktm) <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] | |, [email protected] --- Comment #4 from Kunal Mehta (Legoktm) <[email protected]> --- MariaDB [metawiki_p]> select count(*) from logging where log_type="gblrights" and log_namespace=-1 and log_title like "EditWikiSets/%"; +----------+ | count(*) | +----------+ | 304 | +----------+ 1 row in set (0.05 sec) I think all we need to do is fix the log_title field. Will this work? UPDATE logging SET log_title = REPLACE(log_title, 'EditWikiSets', 'WikiSets') WHERE log_type="gblrights" AND log_namespace=-1 AND log_title like "EditWikiSets/%"; -- 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
