X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=Prune.php;h=2ed9ea3debe6eef8dd18b24740658236b7477962;hp=2fc3587ccfe7a27c09396d0d5e1dcb9bb1bbf30a;hb=refs%2Fheads%2Fwip_alan_T6343_generic_progress_bar_delete;hpb=09784f98d703a83b46eb95ec9f6bcd48596fad76 diff --git a/Prune.php b/Prune.php index 2fc3587c..2ed9ea3d 100644 --- a/Prune.php +++ b/Prune.php @@ -78,7 +78,10 @@ class Pman_Core_Prune extends Pman WHERE action = 'NOTIFY' and event_when < NOW() - INTERVAL 1 WEEK GROUP BY on_id, on_table HAVING mm > 2 ORDER BY mm desc; */ - DB_DataObject::debugLevel(1); + //DB_DataObject::debugLevel(1); + $f = DB_DataObject::Factory('Events'); + $before = $f->count(); + $f = DB_DataObject::Factory('Events'); $f->selectAdd(); $f->selectAdd("on_id, on_table, min(id) as min_id, max(id) as max_id, count(*) as mm"); @@ -87,7 +90,7 @@ class Pman_Core_Prune extends Pman $f->having("mm > 2"); $f->orderBy('mm desc') ; $f->limit(10000); - $ar = $f->fetchAll(); + $ar = $f->fetchAll(); foreach($ar as $f) { $q = DB_DataObject::Factory('Events'); @@ -98,13 +101,15 @@ class Pman_Core_Prune extends Pman AND on_table = '{$q->escape($f->on_table)}' AND - id > {$f->min_id} + id > {$f->min_id} -- allow the first one to stay.... AND - id < {$f->max_id} + id <= {$f->max_id} "); } - + $f = DB_DataObject::Factory('Events'); + $after = $f->count(); + echo "DELETED : " . ($before - $after) . " records\n";