Skip to content

Commit

Permalink
0001725: MSSQL Bulk Loader support for UNC paths
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed May 22, 2014
1 parent 0b3932b commit e3ae299
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -133,7 +133,7 @@ protected void flush() {
this.stagedInputFile.close();
statistics.get(batch).startTimer(DataWriterStatisticConstants.DATABASEMILLIS);
String filename;
if (! StringUtils.isEmpty(uncPath)) {
if (StringUtils.isEmpty(uncPath)) {
filename = stagedInputFile.getFile().getAbsolutePath();
} else {
filename = uncPath + "\\" + stagedInputFile.getFile().getName();
Expand Down

0 comments on commit e3ae299

Please sign in to comment.