Github user blrunner commented on a diff in the pull request:

    https://github.com/apache/tajo/pull/824#discussion_r42072793
  
    --- Diff: 
tajo-storage/tajo-storage-hdfs/src/main/java/org/apache/tajo/storage/FileTablespace.java
 ---
    @@ -343,9 +343,9 @@ public boolean accept(Path path) {
     
           FileStatus[] matches = fs.globStatus(p, inputFilter);
           if (matches == null) {
    -        LOG.warn("Input path does not exist: " + p);
    +        errors.add(new IOException("Input path does not exist: " + p));
           } else if (matches.length == 0) {
    -        LOG.warn("Input Pattern " + p + " matches 0 files");
    +        errors.add(new IOException("Input Pattern " + p + " matches 0 
files"));
    --- End diff --
    
    I applied existing codes. :)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

Reply via email to