Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/devel' into devel
Browse files Browse the repository at this point in the history
  • Loading branch information
serge-rider committed Oct 1, 2021
2 parents c5ede4c + 280fc30 commit db626f4
Showing 1 changed file with 4 additions and 4 deletions.
Expand Up @@ -195,12 +195,12 @@ public void exportRow(DBCSession session, DBCResultSet resultSet, Object[] row)
}
}
if (DBUtils.isNullValue(row[i])) {
if (CommonUtils.isEmpty(nullString)) {
return;
if (CommonUtils.isNotEmpty(nullString)) {
writeCellValue(nullString, quote);
}
stringValue = nullString;
} else {
writeCellValue(stringValue, quote);
}
writeCellValue(stringValue, quote);
}
if (i < row.length - 1) {
writeDelimiter();
Expand Down

0 comments on commit db626f4

Please sign in to comment.