guiyanakuang commented on a change in pull request #941: URL: https://github.com/apache/orc/pull/941#discussion_r737245972
########## File path: java/tools/src/java/org/apache/orc/tools/FileDump.java ########## @@ -583,8 +602,10 @@ private static void recoverFile(final Path corruptPath, final FileSystem fs, // Move side file to backup path Path sideFilePath = OrcAcidUtils.getSideFile(corruptPath); - Path backupSideFilePath = new Path(backupDataPath.getParent(), sideFilePath.getName()); - moveFiles(fs, sideFilePath, backupSideFilePath); + if (fs.exists(sideFilePath)) { + Path backupSideFilePath = new Path(backupDataPath.getParent(), sideFilePath.getName()); + moveFiles(fs, sideFilePath, backupSideFilePath); + } Review comment: @dongjoon-hyun I have removed the 1039 content, this pr merged 1034 midway and resolved the conflict, is it correct now? -- 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: dev-unsubscr...@orc.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org