https://bugzilla.wikimedia.org/show_bug.cgi?id=19466

           Summary: rebuildrecentchanges.php should preserve rc_patrolled
                    column
           Product: MediaWiki
           Version: 1.14.0
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: enhancement
          Priority: Normal
         Component: Maintenance scripts
        AssignedTo: [email protected]
        ReportedBy: [email protected]


Please make maintenance/rebuildrecentchanges.php preserve the rc_patrolled
column in the recentchanges table. When you need to rebuild recent changes
(e.g., after a big import), you shouldn't have to lose your patrolling
information.  At least make this an option. Thanks.

Case study:

Step 1:

mysql> select count(*) from vpw_recentchanges where rc_patrolled = 1;
+----------+
| count(*) |
+----------+
|     4807 | 
+----------+

Step 2: mark a bunch of articles as patrolled

Step 3:

mysql> select count(*) from vpw_recentchanges where rc_patrolled = 1;
+----------+
| count(*) |
+----------+
|     4812 | 
+----------+

Step 4:

$ php rebuildrecentchanges.php

Step 5: The newly patrolled article data is lost:

mysql> select count(*) from vpw_recentchanges where rc_patrolled = 1;
+----------+
| count(*) |
+----------+
|     4807 | 
+----------+


-- 
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

Reply via email to