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

Adding a check to prevent unintentional dropping of mart tables

parent ed29b838
No related branches found
No related tags found
No related merge requests found
......@@ -125,7 +125,11 @@ my $dba = $support->get_database('ensembl');
my @tables;
my @patterns = map { '%'.$_.'%' } qw/tmp temp bak backup/;
push(@patterns, 'MTMP\_%') if $support->param('mart');
if($support->param('mart')) {
if($support->user_proceed('--mart was specified on the command line. Do not run this during a mart build. Do you wish to continue?')) {
push(@patterns, 'MTMP\_%');
}
}
foreach my $pattern (@patterns) {
my $results = $dba->dbc()->sql_helper()->execute_simple(
......
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