View | Details | Raw Unified | Return to bug 23986
Collapse All | Expand All

(-)a/tools/batch_delete_records.pl (-2 / +1 lines)
Lines 132-138 if ( $op eq 'form' ) { Link Here
132
        total_records => 0,
132
        total_records => 0,
133
        total_success => 0,
133
        total_success => 0,
134
    };
134
    };
135
    RECORD_IDS: for my $record_id ( sort { $a <=> $b } @record_ids ) {
135
    RECORD_IDS: for my $record_id ( @record_ids ) {
136
        $report->{total_records}++;
136
        $report->{total_records}++;
137
        next unless $record_id;
137
        next unless $record_id;
138
        $schema->storage->txn_begin;
138
        $schema->storage->txn_begin;
139
- 

Return to bug 23986