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

(-)a/installer/data/mysql/atomicupdate/bug_41834.pl (-1 / +10 lines)
Lines 66-71 return { Link Here
66
            WHERE variable IN (} . join( q{,}, map { q{?} } @sysprefs ) . q{)}, undef, @sysprefs
66
            WHERE variable IN (} . join( q{,}, map { q{?} } @sysprefs ) . q{)}, undef, @sysprefs
67
        );
67
        );
68
68
69
        my $updated_last = $dbh->do(
70
            q{
71
            UPDATE systempreferences
72
            SET options=NULL, explanation=NULL, type=NULL
73
            WHERE variable = 'marcflavour'
74
            }
75
        );
76
77
        $updated = $updated + $updated_last;
78
69
        say $out sprintf "Updated %s system preferences", $updated;
79
        say $out sprintf "Updated %s system preferences", $updated;
70
    },
80
    },
71
};
81
};
72
- 

Return to bug 41834