Skip to content
Snippets Groups Projects
Commit 92e232e6 authored by Magali Ruffier's avatar Magali Ruffier
Browse files

add missing space

parent e7248242
No related branches found
No related tags found
No related merge requests found
......@@ -87,7 +87,7 @@ sub _load_table {
$dbh->do('delete from ' . $TABLE_NAME . ' WHERE source_id = ' . $source_id);
}
print "Loading data into '$TABLE_NAME' from '$file'\n" if $verbose;
my $load = sprintf(q{LOAD DATA LOCAL INFILE '%s'INTO TABLE %s}, $file, $TABLE_NAME);
my $load = sprintf(q{LOAD DATA LOCAL INFILE '%s' INTO TABLE %s}, $file, $TABLE_NAME);
$dbh->do($load);
print "Finished loading data into '$TABLE_NAME'\n" if $verbose;
return;
......
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