Skip to content

Commit

Permalink
adds \t as delimiter.
Browse files Browse the repository at this point in the history
  • Loading branch information
cqueiroz-pivotal committed Mar 28, 2016
1 parent 41b4423 commit 467dbb6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public String mapRow(ResultSet resultSet, int i) throws SQLException {
sb.append(columnDelimiter);
}

String row = sb.append(resultSet.getObject(columnsCount)).append("\n").toString();
String row = sb.append(resultSet.getObject(columnsCount)).append("\t").toString();
log.info(row);
return row;
}
Expand Down

0 comments on commit 467dbb6

Please sign in to comment.