Skip to content
Snippets Groups Projects
Commit ce47ceab authored by Jan-hinnerk Vogel's avatar Jan-hinnerk Vogel
Browse files

"my" variable $sth2 masked earlier declaration in same scope ..
parent 5574121a
No related branches found
No related tags found
No related merge requests found
......@@ -308,7 +308,7 @@ sub save {
my $sth2 = $self->prepare( qq(insert ignore into meta_coord values("dna_align_feature",$_->[0],$_->[1])) );
$sth2->execute;
$sth2->finish;
my $sth2 = $self->prepare( qq(update meta_coord set max_length = $_->[1] where coord_system_id = $_->[0] and table_name="dna_align_feature" and max_length < $_->[1]) );
$sth2 = $self->prepare( qq(update meta_coord set max_length = $_->[1] where coord_system_id = $_->[0] and table_name="dna_align_feature" and max_length < $_->[1]) );
$sth2->execute;
$sth2->finish;
}
......
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