You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Wes McKinney (JIRA)" <ji...@apache.org> on 2017/04/11 14:16:41 UTC

[jira] [Updated] (ARROW-805) listing empty HDFS directory returns an error instead of returning empty list

     [ https://issues.apache.org/jira/browse/ARROW-805?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Wes McKinney updated ARROW-805:
-------------------------------
    Fix Version/s: 0.3.0

> listing empty HDFS directory returns an error instead of returning empty list
> -----------------------------------------------------------------------------
>
>                 Key: ARROW-805
>                 URL: https://issues.apache.org/jira/browse/ARROW-805
>             Project: Apache Arrow
>          Issue Type: Bug
>    Affects Versions: 0.2.0, 0.3.0
>            Reporter: Leif Walsh
>             Fix For: 0.3.0
>
>
> https://github.com/apache/arrow/blob/master/cpp/src/arrow/io/hdfs.cc#L409-L410
> {code}
>     if (entries == nullptr) {
>       // If the directory is empty, entries is NULL but errno is 0. Non-zero
>       // errno indicates error
>       //
>       // Note: errno is thread-locala
>       if (errno == 0) { num_entries = 0; }
>       { return Status::IOError("HDFS: list directory failed"); }
>     }
> {code}
> I think that should have an else:
> {code}
>     if (entries == nullptr) {
>       // If the directory is empty, entries is NULL but errno is 0. Non-zero
>       // errno indicates error
>       //
>       // Note: errno is thread-locala
>       if (errno == 0) {
>         num_entries = 0;
>       } else {
>         return Status::IOError("HDFS: list directory failed");
>       }
>     }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.15#6346)