From 183851b06bd6c52f3cae5375f433da720d410447 Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Wed, 11 Oct 2006 18:12:39 +0000 Subject: MediaWiki 1.7.1 wiederhergestellt --- maintenance/purgeOldText.inc | 63 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 maintenance/purgeOldText.inc (limited to 'maintenance/purgeOldText.inc') diff --git a/maintenance/purgeOldText.inc b/maintenance/purgeOldText.inc new file mode 100644 index 00000000..0bf6225a --- /dev/null +++ b/maintenance/purgeOldText.inc @@ -0,0 +1,63 @@ + + */ + +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 )" ); + 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(); + +} + +?> \ No newline at end of file -- cgit v1.2.2