[rt-users] rt-validator does not delete osbolete	ObjectCustomFieldValue records
    David Moreau Simard 
    dmsimard at iweb.com
       
    Thu Aug 29 09:18:01 EDT 2013
    
    
  
Hi,
We're trying to do a large cleanup of our database. There are a lot of obsolete ObjectCustomFieldValue records that are related to deleted tickets.
I would expect rt-validator to both delete related Transactions AND The ObjectCustomFieldValue records themselves.
This is not happening, although it does detect issues - for example:
===
Record #33716942 in ObjectCustomFieldValues references a nonexistent record in Tickets
        ObjectId => '6417200' => id
===
Record #1 in ObjectCustomFieldValues references a nonexistent record in Transactions
        ObjectId => '8651463' => id
===
After spending a lot on time on this, I came to realize that the sub in rt-validator for custom fields integrity does not use delete_record at all.
Example that uses delete_record:
===
push @CHECKS, 'Tickets <-> Role Groups' => sub {
    # XXX: we check only that there is at least one group for a queue
    # from queue to group
    check_integrity(
        'Tickets', 'id' => 'Groups', 'Instance',
        join_condition   => 't.Domain = ?',
        bind_values => [ 'RT::Ticket-Role' ],
    );
    # from group to ticket
    check_integrity(
        'Groups', 'Instance' => 'Tickets', 'id',
        condition   => 's.Domain = ?',
        bind_values => [ 'RT::Ticket-Role' ],
        action => sub {
            my $id = shift;
            return unless prompt(
                'Delete', "Found a role group of a nonexistent ticket."
            );
            delete_record( 'Groups', $id );
        },
    );
};
===
Now, custom field checks are done this way, without delete_record:
===
push @CHECKS, 'CustomFields and friends' => sub {
    #XXX: ObjectCustomFields needs more love
    check_integrity(
        'CustomFieldValues', 'CustomField' => 'CustomFields', 'id',
    );
    check_integrity(
        'ObjectCustomFieldValues', 'CustomField' => 'CustomFields', 'id',
    );
    foreach my $model ( @models ) {
        check_integrity(
            'ObjectCustomFieldValues', 'ObjectId' => m2t($model), 'id',
            condition   => 's.ObjectType = ?',
            bind_values => [ "RT::$model" ],
        );
    }
};
===
I'm not entirely safe with putting a delete_record somewhere in there.
Can someone chime in about what would be my best course of action ?
Thanks,
David Moreau Simard
    
    
More information about the rt-users
mailing list