Bug 373492: Data in data/mining/* is corrupted - Patch by Fr��d��ric Buclin <LpSolit@gmail.com> r=mkanat r=gerv a=mkanat

This commit is contained in:
lpsolit%gmail.com 2007-03-12 17:01:16 +00:00
Родитель ba592102ab
Коммит af6e390baa
1 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -264,8 +264,11 @@ sub get_old_data {
$recreate = 1;
my @new_cols = ($columns[0], @statuses, @resolutions);
if (scalar(@columns) == scalar(@new_cols)) {
my ($removed, $added) = diff_arrays(\@columns, \@new_cols);
last if (!scalar(@$removed) && !scalar(@$added));
my $identical = 1;
for (0 .. $#columns) {
$identical = 0 if ($columns[$_] ne $new_cols[$_]);
}
last if $identical;
}
}
next unless $recreate;