MediaWiki REL1_30
populateParentId.php
Go to the documentation of this file.
1<?php
26require_once __DIR__ . '/Maintenance.php';
27
35 public function __construct() {
36 parent::__construct();
37 $this->addDescription( 'Populates rev_parent_id' );
38 }
39
40 protected function getUpdateKey() {
41 return 'populate rev_parent_id';
42 }
43
44 protected function updateSkippedMessage() {
45 return 'rev_parent_id column of revision table already populated.';
46 }
47
48 protected function doDBUpdates() {
49 $db = $this->getDB( DB_MASTER );
50 if ( !$db->tableExists( 'revision' ) ) {
51 $this->error( "revision table does not exist" );
52
53 return false;
54 }
55 $this->output( "Populating rev_parent_id column\n" );
56 $start = $db->selectField( 'revision', 'MIN(rev_id)', false, __FUNCTION__ );
57 $end = $db->selectField( 'revision', 'MAX(rev_id)', false, __FUNCTION__ );
58 if ( is_null( $start ) || is_null( $end ) ) {
59 $this->output( "...revision table seems to be empty, nothing to do.\n" );
60
61 return true;
62 }
63 # Do remaining chunk
64 $blockStart = intval( $start );
65 $blockEnd = intval( $start ) + $this->mBatchSize - 1;
66 $count = 0;
67 $changed = 0;
68 while ( $blockStart <= $end ) {
69 $this->output( "...doing rev_id from $blockStart to $blockEnd\n" );
70 $cond = "rev_id BETWEEN $blockStart AND $blockEnd";
71 $res = $db->select( 'revision',
72 [ 'rev_id', 'rev_page', 'rev_timestamp', 'rev_parent_id' ],
73 [ $cond, 'rev_parent_id' => null ], __METHOD__ );
74 # Go through and update rev_parent_id from these rows.
75 # Assume that the previous revision of the title was
76 # the original previous revision of the title when the
77 # edit was made...
78 foreach ( $res as $row ) {
79 # First, check rows with the same timestamp other than this one
80 # with a smaller rev ID. The highest ID "wins". This avoids loops
81 # as timestamp can only decrease and never loops with IDs (from parent to parent)
82 $previousID = $db->selectField( 'revision', 'rev_id',
83 [ 'rev_page' => $row->rev_page, 'rev_timestamp' => $row->rev_timestamp,
84 "rev_id < " . intval( $row->rev_id ) ],
85 __METHOD__,
86 [ 'ORDER BY' => 'rev_id DESC' ] );
87 # If there are none, check the highest ID with a lower timestamp
88 if ( !$previousID ) {
89 # Get the highest older timestamp
90 $lastTimestamp = $db->selectField(
91 'revision',
92 'rev_timestamp',
93 [
94 'rev_page' => $row->rev_page,
95 "rev_timestamp < " . $db->addQuotes( $row->rev_timestamp )
96 ],
97 __METHOD__,
98 [ 'ORDER BY' => 'rev_timestamp DESC' ]
99 );
100 # If there is one, let the highest rev ID win
101 if ( $lastTimestamp ) {
102 $previousID = $db->selectField( 'revision', 'rev_id',
103 [ 'rev_page' => $row->rev_page, 'rev_timestamp' => $lastTimestamp ],
104 __METHOD__,
105 [ 'ORDER BY' => 'rev_id DESC' ] );
106 }
107 }
108 $previousID = intval( $previousID );
109 if ( $previousID != $row->rev_parent_id ) {
110 $changed++;
111 }
112 # Update the row...
113 $db->update( 'revision',
114 [ 'rev_parent_id' => $previousID ],
115 [ 'rev_id' => $row->rev_id ],
116 __METHOD__ );
117 $count++;
118 }
119 $blockStart += $this->mBatchSize;
120 $blockEnd += $this->mBatchSize;
122 }
123 $this->output( "rev_parent_id population complete ... {$count} rows [{$changed} changed]\n" );
124
125 return true;
126 }
127}
128
129$maintClass = "PopulateParentId";
130require_once RUN_MAINTENANCE_IF_MAIN;
wfWaitForSlaves( $ifWritesSince=null, $wiki=false, $cluster=false, $timeout=null)
Waits for the replica DBs to catch up to the master position.
Class for scripts that perform database maintenance and want to log the update in updatelog so we can...
int $mBatchSize
Batch size.
getDB( $db, $groups=[], $wiki=false)
Returns a database to be used by current maintenance script.
addDescription( $text)
Set the description text.
Maintenance script that makes the required database updates for rev_parent_id to be of any use.
getUpdateKey()
Get the update key name to go in the update log table.
doDBUpdates()
Do the actual work.
__construct()
Default constructor.
updateSkippedMessage()
Message to show that the update was done already and was just skipped.
$res
Definition database.txt:21
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling output() to send it all. It could be easily changed to send incrementally if that becomes useful
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults error
Definition hooks.txt:2581
require_once RUN_MAINTENANCE_IF_MAIN
const DB_MASTER
Definition defines.php:26