JingsongLi commented on code in PR #4546:
URL: https://github.com/apache/paimon/pull/4546#discussion_r1847669352
##########
paimon-core/src/main/java/org/apache/paimon/io/RollingFileWriter.java:
##########
@@ -78,7 +78,12 @@ public void write(T row) throws IOException {
openCurrentWriter();
}
- currentWriter.write(row);
Review Comment:
You modify `SingleFileWriter`
```
@Override
public void abort() {
if (out != null) {
IOUtils.closeQuietly(out);
out = null;
}
fileIO.deleteQuietly(path);
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]