Skip to content
Snippets Groups Projects
Commit 28ba6e07 authored by Andy Yates's avatar Andy Yates
Browse files

Adding a check in here to highlight when a regular expression failed to match...

Adding a check in here to highlight when a regular expression failed to match meaning we've found a corrupted schema patch identifier which should be removed
parent cf270c2e
No related branches found
No related tags found
No related merge requests found
......@@ -337,11 +337,15 @@ while ( $sth->fetch() ) {
$species = $value;
}
elsif ( $key eq 'patch' ) {
$value =~ /^(patch_\d+_(\d+)_?[a-z]?\.sql)\|(.*)$/;
my $patch_ident = $1;
my $patch_release = $2;
my $patch_info = $3;
$dbpatches{$patch_release}{$patch_ident} = $patch_info;
if($value =~ /^(patch_\d+_(\d+)_?[a-z]?\.sql)\|(.*)$/) {
my $patch_ident = $1;
my $patch_release = $2;
my $patch_info = $3;
$dbpatches{$patch_release}{$patch_ident} = $patch_info;
}
else {
warn "The patch value $value from database $database does not conform to the pattern of 'patch_from_to_tag|description'. Please fix";
}
}
} ## end while ( $sth2->fetch() )
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment