* Use timestamp
[lhc/web/wiklou.git] / maintenance / populateParentId.php
1 <?php
2
3 /*
4 * Makes the required database updates for rev_parent_id
5 * to be of any use. It can be used for some simple tracking
6 * and to find new page edits by users.
7 */
8
9 define( 'BATCH_SIZE', 200 );
10
11 require_once 'commandLine.inc';
12
13 $db =& wfGetDB( DB_MASTER );
14 if ( !$db->tableExists( 'revision' ) ) {
15 echo "revision table does not exist\n";
16 exit( 1 );
17 }
18
19 populate_rev_parent_id( $db );
20
21 function populate_rev_parent_id( $db ) {
22 echo "Populating rev_parent_id column\n";
23 $start = $db->selectField( 'revision', 'MIN(rev_id)', false, __FUNCTION__ );
24 $end = $db->selectField( 'revision', 'MAX(rev_id)', false, __FUNCTION__ );
25 # Do remaining chunk
26 $end += BATCH_SIZE - 1;
27 $blockStart = $start;
28 $blockEnd = $start + BATCH_SIZE - 1;
29 $count = 0;
30 $changed = 0;
31 while( $blockEnd <= $end ) {
32 echo "...doing rev_id from $blockStart to $blockEnd\n";
33 $cond = "rev_id BETWEEN $blockStart AND $blockEnd";
34 $res = $db->select( 'revision',
35 array('rev_id','rev_page','rev_timestamp','rev_parent_id'),
36 $cond, __FUNCTION__ );
37 # Go through and update rev_parent_id from these rows.
38 # Assume that the previous revision of the title was
39 # the original previous revision of the title when the
40 # edit was made...
41 foreach( $res as $row ) {
42 $previousID = $db->selectField( 'revision', 'rev_id',
43 array( 'rev_page' => $row->rev_page, "rev_timestamp < '{$row->rev_timestamp}'" ),
44 __FUNCTION__,
45 array( 'ORDER BY' => 'rev_timestamp DESC' ) );
46 $previousID = intval($previousID);
47 if( $previousID != $row->rev_parent_id )
48 $changed++;
49 # Update the row...
50 $db->update( 'revision',
51 array( 'rev_parent_id' => $previousID ),
52 array( 'rev_id' => $row->rev_id ),
53 __FUNCTION__ );
54 $count++;
55 }
56 $blockStart += BATCH_SIZE - 1;
57 $blockEnd += BATCH_SIZE - 1;
58 wfWaitForSlaves( 5 );
59 }
60 $logged = $db->insert( 'updatelog',
61 array( 'ul_key' => 'populate rev_parent_id' ),
62 __FUNCTION__,
63 'IGNORE' );
64 if( $logged ) {
65 echo "rev_parent_id population complete ... {$count} rows [{$changed} changed]\n";
66 return true;
67 } else {
68 echo "Could not insert rev_parent_id population row.\n";
69 return false;
70 }
71 }
72
73