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

(-)a/installer/data/mysql/atomicupdate/bug_32745.pl (-1 / +15 lines)
Line 0 Link Here
0
- 
1
use Modern::Perl;
2
3
return {
4
    bug_number => "32745",
5
    description => "Update context={} for invalid background jobs",
6
    up => sub {
7
        my ($args) = @_;
8
        my ($dbh, $out) = @$args{qw(dbh out)};
9
        $dbh->do(q{
10
            UPDATE background_jobs
11
            SET context="{}"
12
            WHERE context IS NULL
13
        });
14
    },
15
};

Return to bug 32745