Skip to content

Commit

Permalink
[fix](export) fix error in show export outfile info column
Browse files Browse the repository at this point in the history
  • Loading branch information
morningman committed Jan 12, 2025
1 parent 95b5b00 commit 0967fd6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ private OutfileInfo getOutFileInfo(Map<String, String> resultAttachedInfo) {
OutfileInfo outfileInfo = new OutfileInfo();
outfileInfo.setFileNumber(resultAttachedInfo.get(OutFileClause.FILE_NUMBER));
outfileInfo.setTotalRows(resultAttachedInfo.get(OutFileClause.TOTAL_ROWS));
outfileInfo.setFileSize(resultAttachedInfo.get(OutFileClause.FILE_SIZE) + "bytes");
outfileInfo.setFileSize(resultAttachedInfo.get(OutFileClause.FILE_SIZE));
outfileInfo.setUrl(resultAttachedInfo.get(OutFileClause.URL));
return outfileInfo;
}
Expand Down

0 comments on commit 0967fd6

Please sign in to comment.