cuspymd commented on a change in pull request #16029:
URL: https://github.com/apache/flink/pull/16029#discussion_r642537474
##########
File path:
flink-table/flink-sql-client/src/main/java/org/apache/flink/table/client/cli/CliUtils.java
##########
@@ -109,7 +109,7 @@ public static boolean createFile(final Path filePath) {
if (parent == null) {
return false;
}
- Files.createDirectories(parent);
+ Files.createDirectories(parent.toRealPath());
Review comment:
`toRealPath()` is a function that only works on files that already exist.
--
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.
For queries about this service, please contact Infrastructure at:
[email protected]