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

    https://github.com/apache/flink/pull/2109#discussion_r76198999
  
    --- Diff: 
flink-core/src/test/java/org/apache/flink/api/common/io/DefaultFilterTest.java 
---
    @@ -34,14 +34,18 @@
        public static Collection<Object[]> data() {
                return Arrays.asList(new Object[][] {
                        {"file.txt",                    false},
    +
                        {".file.txt",                   true},
    -                   {"_file.txt",                   true},
    -                   {"_COPYING_",                   true},
                        {"dir/.file.txt",               true},
    -                   {"dir/_file.txt",               true},
    -                   {"dir/_COPYING_",               true},
                        {".dir/file.txt",               false},
    +
    +                   {"_file.txt",                   true},
    +                   {"dir/_file.txt",               true},
                        {"_dir/file.txt",               false},
    +
    +                   // Check filtering Hadoop's unfinished files
    +                   {"_COPYING_",                   true},
    --- End diff --
    
    This should contain the newly introduced constant.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to