blob: c4732e97fa02201f171f76b32a2737e29d576119 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
<?php
/**
* Support functions for cleaning up redundant text records
*
* @addtogroup Maintenance
* @author Rob Church <robchur@gmail.com>
*/
function PurgeRedundantText( $delete = false ) {
# Data should come off the master, wrapped in a transaction
$dbw = wfGetDB( DB_MASTER );
$dbw->begin();
$tbl_arc = $dbw->tableName( 'archive' );
$tbl_rev = $dbw->tableName( 'revision' );
$tbl_txt = $dbw->tableName( 'text' );
# Get "active" text records from the revisions table
echo( "Searching for active text records in revisions table..." );
$res = $dbw->query( "SELECT DISTINCTROW rev_text_id FROM $tbl_rev" );
while( $row = $dbw->fetchObject( $res ) ) {
$cur[] = $row->rev_text_id;
}
echo( "done.\n" );
# Get "active" text records from the archive table
echo( "Searching for active text records in archive table..." );
$res = $dbw->query( "SELECT DISTINCTROW ar_text_id FROM $tbl_arc" );
while( $row = $dbw->fetchObject( $res ) ) {
$cur[] = $row->ar_text_id;
}
echo( "done.\n" );
# Get the IDs of all text records not in these sets
echo( "Searching for inactive text records..." );
$set = implode( ', ', $cur );
$res = $dbw->query( "SELECT old_id FROM $tbl_txt WHERE old_id NOT IN ( $set )" );
$old = array();
while( $row = $dbw->fetchObject( $res ) ) {
$old[] = $row->old_id;
}
echo( "done.\n" );
# Inform the user of what we're going to do
$count = count( $old );
echo( "$count inactive items found.\n" );
# Delete as appropriate
if( $delete && $count ) {
echo( "Deleting..." );
$set = implode( ', ', $old );
$dbw->query( "DELETE FROM $tbl_txt WHERE old_id IN ( $set )" );
echo( "done.\n" );
}
# Done
$dbw->commit();
}
?>
|