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

    https://github.com/apache/tajo/pull/602#discussion_r32801654
  
    --- Diff: 
tajo-storage/tajo-storage-common/src/main/java/org/apache/tajo/storage/Tablespace.java
 ---
    @@ -49,18 +51,24 @@
      */
     public abstract class Tablespace {
     
    -  public static final PathFilter hiddenFileFilter = new PathFilter() {
    -    public boolean accept(Path p) {
    -      String name = p.getName();
    -      return !name.startsWith("_") && !name.startsWith(".");
    -    }
    -  };
    +  protected final String name;
    +  protected final URI uri;
    +  /** this space is visible or not. */
    --- End diff --
    
    TablespaceManager automatically adds temporary tablespaces like 
``file:///``. These temporary tables are only used internally in Tajo, and they 
must not not visible. The visible member variable is for that.


---
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