Github user jihoonson commented on a diff in the pull request:
https://github.com/apache/tajo/pull/602#discussion_r32806680
--- 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 --
Got it. Thanks.
---
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.
---