Skip to content

Commit

Permalink
0002615: Support commas in column names
Browse files Browse the repository at this point in the history
  • Loading branch information
mmichalek committed May 26, 2016
1 parent 92e0e95 commit faba761
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1726,8 +1726,8 @@ public Data mapRow(Row row) {
return data;
} else {
throw new SymmetricException(
"The extracted row data did not have the expected (%d) number of columns: %s. The initial load sql was: %s",
expectedCommaCount, csvRow, initialLoadSql);
"The extracted row data did not have the expected (%d) number of columns (actual=%s): %s. The initial load sql was: %s",
expectedCommaCount, commaCount, csvRow, initialLoadSql);
}
}
});
Expand Down

0 comments on commit faba761

Please sign in to comment.